React.js状态值为数组,怎么使用setState比较合适
3 回答
慕盖茨4494581
TA贡献1850条经验 获得超11个赞
React.js状态值为数组,那么使用setState设置状态的方法是调用onchang方法来操作数组。
写法如下:
onChange(event){
var newArray = this.state.arr.slice();
newArray.push("new value");
this.setState({arr:newArray})
}
上面的方法中使用onChange来完成状态的动态改变。
其中newArray 是把状态值数组进行拆分,然后调用push方法放入新值,再调用setState方法对数组进行更新。
慕神8447489
TA贡献1780条经验 获得超1个赞
理论上来说,最好是
setState({ 'arrary': [...this.state.array, newItem]})
setState({ 'array' : this.state.array.concat([neItem])})
- 3 回答
- 0 关注
- 580 浏览
添加回答
举报
0/150
提交
取消