作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在再次添加之前清空状态中的数组
this.state = {
arrayOne = [
{
name: 'first n',
last: 'last n'
},
{
name: 'first Name',
last: 'last Name'
}
]
}
this.setState({arrayOne: []}) //not emptying the array
this.setState({arrayOne: [...arrayOne.splice()]}) //also not working
最佳答案
为什么说它不起作用?语法看起来不错并且应该可以工作
请注意,setState 是一个异步函数,您需要等待更新完成才能看到更改。
您可以将回调函数传递给 setState,该函数将在设置状态时执行,如下所示
this.setState({
blah: 'something new'
}, () => {
console.log(this.state.blah) // will print 'something new'
}
})
如果您这样做,您将不会立即看到变化:
this.setState({
blah: 'something new'
})
console.log(this.state.blah) // this will print whatever 'blah' was previously set to, and not 'something new'
关于javascript - 如何在更新增益之前清空状态中的数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60127828/
我是一名优秀的程序员,十分优秀!