TLDR: ใช้ defaultChecked แทนที่จะทำเครื่องหมายไว้ว่าทำงานได้jsbin
พยายามติดตั้งช่องทำเครื่องหมายอย่างง่ายที่จะขีดฆ่าข้อความฉลากเมื่อมีการทำเครื่องหมาย ด้วยเหตุผลบางอย่าง handleChange ไม่เริ่มทำงานเมื่อฉันใช้ส่วนประกอบ ทุกคนสามารถอธิบายสิ่งที่ฉันทำผิดได้ไหม
var CrossoutCheckbox = React.createClass({
getInitialState: function () {
return {
complete: (!!this.props.complete) || false
};
},
handleChange: function(){
console.log('handleChange', this.refs.complete.checked); // Never gets logged
this.setState({
complete: this.refs.complete.checked
});
},
render: function(){
var labelStyle={
'text-decoration': this.state.complete?'line-through':''
};
return (
<span>
<label style={labelStyle}>
<input
type="checkbox"
checked={this.state.complete}
ref="complete"
onChange={this.handleChange}
/>
{this.props.text}
</label>
</span>
);
}
});
การใช้งาน:
React.renderComponent(CrossoutCheckbox({text: "Text Text", complete: false}), mountNode);
สารละลาย:
การใช้ที่เลือกไว้จะไม่ยอมให้มีการเปลี่ยนแปลงค่าพื้นฐาน (ชัดเจน) ดังนั้นจึงไม่เรียกใช้ตัวจัดการ onChange เปลี่ยนเป็น defaultChecked ดูเหมือนจะแก้ไขปัญหานี้:
var CrossoutCheckbox = React.createClass({
getInitialState: function () {
return {
complete: (!!this.props.complete) || false
};
},
handleChange: function(){
this.setState({
complete: !this.state.complete
});
},
render: function(){
var labelStyle={
'text-decoration': this.state.complete?'line-through':''
};
return (
<span>
<label style={labelStyle}>
<input
type="checkbox"
defaultChecked={this.state.complete}
ref="complete"
onChange={this.handleChange}
/>
{this.props.text}
</label>
</span>
);
}
});
this.refs.complete.getDOMNode().checked
ที่จริงคุณจะต้องใช้ ดู fiddle jsfiddle.net/d10xyqu1
this.setState({checked: !this.state.checked})
ง่ายกว่าเก็บค่าไว้ จากนั้นผู้ประกอบการที่ประกอบไปด้วยสามใน attrubute ตรวจสอบ:checked={this.state.checked ? 'checked': null}