TLDR: Use defaultChecked vez de verificado, trabalhando jsbin .
Tentando configurar uma caixa de seleção simples que cruzará o texto do rótulo quando estiver marcada. Por alguma razão, handleChange não está sendo acionado quando uso o componente. Alguém pode explicar o que estou fazendo de errado?
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);
Solução:
Usar check não permite que o valor subjacente mude (aparentemente) e, portanto, não chama o manipulador onChange. Mudar para defaultChecked parece corrigir isso:
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
. veja violino jsfiddle.net/d10xyqu1
this.setState({checked: !this.state.checked})
mais fácil do que ter que armazenar um valor. Em seguida, um operador ternário nochecked={this.state.checked ? 'checked': null}