TLDR: utilizzare defaultChecked anziché jsbin funzionante e controllato .
Tentativo di impostare una semplice casella di controllo che barrerà il testo dell'etichetta quando è selezionata. Per qualche motivo handleChange non viene attivato quando utilizzo il componente. Qualcuno può spiegare cosa sto facendo di sbagliato?
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>
);
}
});
Uso:
React.renderComponent(CrossoutCheckbox({text: "Text Text", complete: false}), mountNode);
Soluzione:
L'uso di controllato non consente il cambiamento del valore sottostante (apparentemente) e quindi non chiama il gestore onChange. Il passaggio a defaultChecked sembra risolvere questo problema:
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
. vedi violino jsfiddle.net/d10xyqu1
this.setState({checked: !this.state.checked})
che dover memorizzare un valore. Quindi un operatore ternario nell'attubato controllato:checked={this.state.checked ? 'checked': null}