您可以使用索引来更新正确的数组项,方法是将其传递给onChange
via bind
,然后动态构建要传递给的对象update
:
var Hello = React.createClass({
getInitialState : function() {
return {
foo : {
bar : {
items : [ { baz : 1 }, { baz : 2 }, { baz : 3 } ]
}
}
};
},
onChange : function( idx, item, event ) {
var objForUpdate = { foo: { bar: { items : {} } } };
objForUpdate.foo.bar.items[ idx ] = { $set : { baz : event.target.value } };
var newData = React.addons.update( this.state, objForUpdate );
this.setState( newData );
},
render: function() {
var _this = this;
var items = this.state.foo.bar.items.map(function(item, i) {
return <input value={item.baz} onChange={_this.onChange.bind( _this, i, item )}></input>
});
return <div>{items}</div>;
}
});
我的理解是,这只比类似的东西有优势
onChange : function( idx, item, event ) {
item.baz = event.target.value;
this.setState( this.state );
}
如果您要覆盖shouldComponentUpdate
并且对何时重新渲染比每次this.setState()
调用都更有选择性。
提琴手