React güncellemeleri toplu hale getirebilir ve bu nedenle doğru yaklaşım setState'e güncellemeyi gerçekleştiren bir işlev sağlamaktır.
React güncelleme eklentisi için aşağıdakiler güvenilir bir şekilde çalışır:
this.setState( state => update(state, {array: {$push: [4]}}) );
veya concat () için:
this.setState( state => ({
array: state.array.concat([4])
}));
Aşağıda, yanlış yaparsanız ne olduğuna örnek olarak https://jsbin.com/mofekakuqi/7/edit?js,output öğesinin ne olduğunu gösterir .
SetTimeout () çağırma doğru bir şekilde üç öğe ekledi çünkü React bir setTimeout geri çağrısında toplu güncellemeler yapmayacak (bkz. Https://groups.google.com/d/msg/reactjs/G6pljvpTGX0/0ihYw2zK9dEJ ).
Buggy onClick yalnızca "Üçüncü" ekleyecek, ancak sabit olan, beklendiği gibi F, S ve T ekleyecektir.
class List extends React.Component {
constructor(props) {
super(props);
this.state = {
array: []
}
setTimeout(this.addSome, 500);
}
addSome = () => {
this.setState(
update(this.state, {array: {$push: ["First"]}}));
this.setState(
update(this.state, {array: {$push: ["Second"]}}));
this.setState(
update(this.state, {array: {$push: ["Third"]}}));
};
addSomeFixed = () => {
this.setState( state =>
update(state, {array: {$push: ["F"]}}));
this.setState( state =>
update(state, {array: {$push: ["S"]}}));
this.setState( state =>
update(state, {array: {$push: ["T"]}}));
};
render() {
const list = this.state.array.map((item, i) => {
return <li key={i}>{item}</li>
});
console.log(this.state);
return (
<div className='list'>
<button onClick={this.addSome}>add three</button>
<button onClick={this.addSomeFixed}>add three (fixed)</button>
<ul>
{list}
</ul>
</div>
);
}
};
ReactDOM.render(<List />, document.getElementById('app'));