gpt4 book ai didi

javascript - react : Get initialstate after state has changed

转载 作者:数据小太阳 更新时间:2023-10-29 05:15:31 27 4
gpt4 key购买 nike

是否有可能在状态改变后检索初始状态?例如:

React.createClass({
getInitialState: function() {
return { foo: 'bar' }
},
componentWillMount: function() {
this.setState({ foo: 'foo' })
},
componentDidMount: function() {
// get the initial state "bar" ?
}
})

我在文档中找不到任何内容。我当然可以将值保存在外部变量中,但我只是好奇是否可以将初始状态视为可以重复使用的“配置”对象。

最佳答案

不,不会存储初始状态——但如果您想重新执行函数,可以调用 this.getInitialState()

关于javascript - react : Get initialstate after state has changed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24647910/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com