过去几天我一直在学习 React,查看了一些关于编写不同元素的不同方式的教程和解释。然而,有一个我最好奇的 -setState
更新/覆盖state
组件属性的函数。
例如,假设我有一个具有以下内容的类:
class Photos extends React.Component {
constructor() {
super()
state = {
pictures: []
}
}
componentDidMount() {
// This is where the fetch and setState will occur (see below)
}
render() {
return {
<div className="container">
{this.state.pictures}
</div>
}
}
}
这个例子看到我从 API 获取图像。
鉴于我已经为这个函数执行了我的获取、映射和返回 - 然后我将pictures: []
使用在 API 调用中获得的结果更新状态数组。
我的问题源于我所看到的关于如何更新/覆盖图片状态属性的不同方法。
我已经看到它以两种不同的方式编写:
1) 这似乎是一个非常简单易读的方法
this.setState({pictures: pics})
2) 这更复杂,但我认为它是一种更安全的方法
this.setState(prevState => ({
pictures: prevState.pictures.concat(pics)
}))
有人可以解释一下使用两者的优点吗?我希望将来与代码保持一致,处理props和状态等,因此当然首选最通用的方法。