ฉันพยายามสร้างแท็บในการตอบสนองเป็นหลัก แต่มีปัญหาบางอย่าง
นี่คือไฟล์ page.jsx
<RadioGroup>
<Button title="A" />
<Button title="B" />
</RadioGroup>
เมื่อคุณคลิกที่ปุ่ม A, ความต้องการส่วนประกอบ RadioGroup เพื่อยกเลิกการเลือกปุ่ม B
"Selected" หมายถึง 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
ไม่สำคัญจริงๆมีปุ่มตัวเลือก HTML ปกติที่ทริกเกอร์onChange
เหตุการณ์DOM ดั้งเดิม
กระแสที่คาดหวังคือ:
- คลิกที่ปุ่ม "A"
- ปุ่ม "A" ทริกเกอร์ onChange ซึ่งเป็นเหตุการณ์ DOM ดั้งเดิมซึ่งจะแสดงขึ้นถึง RadioGroup
- RadioGroup onChange Listener ถูกเรียก
- RadioGroup ความต้องการที่จะยกเลิกการเลือกปุ่ม B นี่คือคำถามของฉัน
นี่คือปัญหาหลักที่ผมกำลังเผชิญหน้ากับ: ผมไม่สามารถย้าย<Button>
s เข้าไป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
จะรู้ได้อย่างไรว่าจำเป็นต้องตอบสนองต่อเหตุการณ์ของเด็กตามอำเภอใจ จำเป็นต้องรู้บางอย่างเกี่ยวกับลูก ๆ ของมัน