Curioso quale sia il modo giusto di affrontarlo:
var Hello = React.createClass({
getInitialState: function() {
return {total: 0, input1:0, input2:0};
},
render: function() {
return (
<div>{this.state.total}<br/>
<input type="text" value={this.state.input1} onChange={this.handleChange} />
<input type="text" value={this.state.input2} onChange={this.handleChange} />
</div>
);
},
handleChange: function(e){
this.setState({ ??? : e.target.value});
t = this.state.input1 + this.state.input2;
this.setState({total: t});
}
});
React.renderComponent(<Hello />, document.getElementById('content'));
Ovviamente potresti creare funzioni handleChange separate per gestire ogni input diverso, ma non è molto carino. Allo stesso modo potresti creare un componente solo per un singolo input, ma volevo vedere se c'è un modo per farlo in questo modo.