나는 본질적으로 반응하는 탭을 만들려고 노력하고 있지만 몇 가지 문제가 있습니다.
여기에 파일이 있습니다 page.jsx
<RadioGroup>
<Button title="A" />
<Button title="B" />
</RadioGroup>
버튼 A를 클릭하면 RadioGroup 구성 요소가 버튼 B의 선택을 취소해야합니다 .
"선택됨"은 상태 또는 속성의 className을 의미합니다.
여기 있습니다 RadioGroup.jsx
:
module.exports = React.createClass({
onChange: function( e ) {
// How to modify children properties here???
},
render: function() {
return (<div onChange={this.onChange}>
{this.props.children}
</div>);
}
});
의 소스는 Button.jsx
중요하지 않습니다. 기본 DOM onChange
이벤트 를 트리거하는 일반 HTML 라디오 버튼이 있습니다.
예상되는 흐름은 다음과 같습니다.
- 버튼 "A"를 클릭하십시오
- 버튼 "A"는 RadioGroup으로 버블 링되는 네이티브 DOM 이벤트 인 onChange를 트리거합니다.
- RadioGroup onChange 리스너가 호출됩니다.
- RadioGroup은 버튼 B의 선택을 취소해야합니다 . 제 질문입니다.
내가 직면 한 주요 문제는 다음과 같습니다. s를으로 이동할 수 없습니다<Button>
RadioGroup
. 구조가 자식이 임의적 이기 때문 입니다. 즉, 마크 업은
<RadioGroup>
<Button title="A" />
<Button title="B" />
</RadioGroup>
또는
<RadioGroup>
<OtherThing title="A" />
<OtherThing title="B" />
</RadioGroup>
나는 몇 가지 시도했습니다.
시도 : 에서 RadioGroup
의 onChange가 핸들러를 :
React.Children.forEach( this.props.children, function( child ) {
// Set the selected state of each child to be if the underlying <input>
// value matches the child's value
child.setState({ selected: child.props.value === e.target.value });
});
문제:
Invalid access to component property "setState" on exports at the top
level. See react-warning-descriptors . Use a static method
instead: <exports />.type.setState(...)
시도 : 에서 RadioGroup
의 onChange가 핸들러를 :
React.Children.forEach( this.props.children, function( child ) {
child.props.selected = child.props.value === e.target.value;
});
문제 : 아무 일도 일어나지 않습니다. 심지어 제가 Button
클래스에 componentWillReceiveProps
메서드를 제공합니다.
시도 : 부모의 특정 상태를 자식에게 전달하려고했기 때문에 부모 상태를 업데이트하고 자식이 자동으로 응답하도록 할 수 있습니다. RadioGroup의 렌더링 기능에서 :
React.Children.forEach( this.props.children, function( item ) {
this.transferPropsTo( item );
}, this);
문제:
Failed to make request: Error: Invariant Violation: exports: You can't call
transferPropsTo() on a component that you don't own, exports. This usually
means you are calling transferPropsTo() on a component passed in as props
or children.
나쁜 솔루션 # 1 : react-addons.js cloneWithProps 메서드를 사용하여 렌더링시 자식을 복제하여 RadioGroup
속성을 전달할 수 있습니다.
나쁜 솔루션 # 2 : HTML / JSX에 대한 추상화를 구현하여 동적으로 속성을 전달할 수 있습니다.
<RadioGroup items=[
{ type: Button, title: 'A' },
{ type: Button, title: 'B' }
]; />
그런 다음 RadioGroup
동적으로 이러한 버튼을 만듭니다.
RadioGroup
임의의 자식의 사건에 반응해야한다는 것을 어떻게 알 수 있을까요? 반드시 자녀에 대해 알아야합니다.