Closed LittleTheFu closed 8 years ago
这就是所谓的 本地状态
Redux 中的 state
与各组件内部的 state
并不是同一个 state
谢谢,我刚才看了官方的sample,他也是这么做的。 官方教程
class Square extends React.Component {
constructor() {
super();
this.state = {
value: null,
};
}
...
}
我又顺着 本地状态 搜索到了一篇文章,希望对后来人有帮助。 Best Practices for Component State in React.js
非常感谢您的及时解答。
谢谢。
你好,我刚刚接触react。 教程上是说不要修改state,而是返回变化后的state的副本。 但是如下代码有 this.state = { inputVal: '' }