setState vs replaceState in React.js(React.js 中的 setState 与 replaceState)
问题描述
我是 React.js 库的新手,我正在阅读一些教程,结果发现:
I am new to React.js Library and I was going over some of the tutorials and I came across:
this.setState
this.replaceState
给出的描述不是很清楚(IMO).
The Description given is not very clear (IMO).
setState is done to 'set' the state of a value, even if its already set
in the 'getInitialState' function.
同样,
The replaceState() method is for when you want to clear out the values
already in state, and add new ones.
我试过 this.setState({data: someArray});
然后是 this.replaceState({test: someArray});
然后 console.logged 他们,我发现 state
现在有 data
和 test
.
I tried this.setState({data: someArray});
followed by this.replaceState({test: someArray});
and then console.logged them and I found that state
now had both data
and test
.
然后,我尝试了 this.setState({data: someArray});
然后是 this.setState({test: someArray});
然后 console.logged 它们,我发现 state
再次同时具有 data
和 test
.
Then, I tried this.setState({data: someArray});
followed by this.setState({test: someArray});
and then console.logged them and I found that state
again had both data
and test
.
那么,这两者到底有什么区别呢?
So, what exactly is the difference between the two ?
推荐答案
使用 setState
合并当前和以前的状态.使用 replaceState
,它会抛出当前状态,并仅用您提供的内容替换它.通常使用 setState
,除非您出于某种原因确实需要删除键;但是将它们设置为 false/null 通常是一种更明确的策略.
With setState
the current and previous states are merged. With replaceState
, it throws out the current state, and replaces it with only what you provide. Usually setState
is used unless you really need to remove keys for some reason; but setting them to false/null is usually a more explicit tactic.
虽然它可能会改变;replaceState 当前使用作为状态传递的对象,即 replaceState(x)
,一旦设置为 this.state === x
.这比 setState
轻一点,所以如果成千上万的组件经常设置它们的状态,它可以用作优化.
我通过 this test case 断言了这一点.
While it's possible it could change; replaceState currently uses the object passed as the state, i.e. replaceState(x)
, and once it's set this.state === x
. This is a little lighter than setState
, so it could be used as an optimization if thousands of components are setting their states frequently.
I asserted this with this test case.
如果你当前的状态是{a: 1}
,并且你调用了this.setState({b: 2})
;当状态被应用时,它将是 {a: 1, b: 2}
.如果您调用 this.replaceState({b: 2})
您的状态将是 {b: 2}
.
If your current state is {a: 1}
, and you call this.setState({b: 2})
; when the state is applied, it will be {a: 1, b: 2}
. If you called this.replaceState({b: 2})
your state would be {b: 2}
.
旁注:状态不是立即设置的,所以不要这样做 this.setState({b: 1});console.log(this.state)
测试时.
Side note: State isn't set instantly, so don't do this.setState({b: 1}); console.log(this.state)
when testing.
这篇关于React.js 中的 setState 与 replaceState的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:React.js 中的 setState 与 replaceState
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01