gpt4 book ai didi

javascript - 如何从状态访问未安装状态

转载 作者:行者123 更新时间:2023-12-01 01:03:23 25 4
gpt4 key购买 nike

我想在状态尚未安装时访问状态的属性。

class App extends React.Component{    constructor(props){    super(props)    this.state = {       test: 2,       score: test * 2    }}

我想要得分 4,但收到此错误:

'test' is not defined no-undef

P.S score: this.state.test 也不起作用。

最佳答案

您处于构造函数中,因此您可以在没有.setState()的情况下更新状态,并且不会产生任何后果,如下所示:

constructor(props) {
super(props);
this.state = {
test: 2,
};
this.state.score = this.state.test * 2;
}

关于javascript - 如何从状态访问未安装状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55851500/

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