在渲染jsx之后,我试图根据其他状态更新状态。
某些状态已更新,但有些状态未更新。
请考虑检查“ ComponentDidMount()”。我不确定发生了什么!
为什么它们没有得到相应的更新?
我很困惑!
import React, { Component } from "react";
export class MathQuiz extends Component {
constructor(props) {
super(props);
this.state = {
num1: 0,
num2: 0,
op_type: "",
op: "",
result: 0,
no_right: 0,
no_wrong: 0,
options: <li />,
ans_pos: 0,
options_and_pos: [[], 0]
};
}
componentDidMount() {
this.genNums();
this.initQuiz(this.props.location.state.op_type);
}
initQuiz(op_type) {
this.setState({ op_type: op_type });
if (op_type === "Addition") {
this.setState({ op: "+" });
this.setState(prevState => ({ result: prevState.num1 + prevState.num2 }));
} /* Code */
} else if (op_type === "Multiplication") {
this.setState({ op: "x" });
this.setState(prevState => ({ result: prevState.num1 * prevState.num2 }));
console.log(this.state.result);
this.setState({ options_and_pos: this.getOptions(this.state.result) });
this.setState({
options: this.state.options_and_pos[0].map((ele, i) => (
<li key={i}>{ele}</li>
))
});
this.setState({ ans_pos: this.state.options_and_pos[1] });
}
genNums() {
this.setState({
num1: this.genRandRange(1, 100),
num2: this.genRandRange(1, 100)
});
}
getOptions(ans) {
/* Code */
return [ans_options, rand_pos];
}
render() {
return (
<div className="math_quiz_box">
/* JSX Code */
</div>
);
}
}
答案 0 :(得分:1)
React docs帮助您:
setState()并不总是立即更新组件。有可能 批处理或将更新推迟到以后。这使得阅读this.state 在调用setState()之后立即陷入陷阱。
并为您提供解决方案:
相反,使用componentDidUpdate或setState回调 (setState(updater,callback)),保证两者都可以触发 应用更新后。
因此,请确保在更新状态后不使用状态。
答案 1 :(得分:1)
更糟的是,状态被其他状态改变。最好是通过道具或事件处理程序更改状态。
例如,this.genNums()
不必在componentDidMount()
中执行
this.setState(prevState => ({ result: prevState.num1 + prevState.num2 }));
上面的代码可以更改为:
this.setState({result: 2*this.genRandRange(1, 100)}) //assume this.genRandRange() return Number not String
整个段落可以更改:
import React, { Component } from "react";
export class MathQuiz extends Component {
constructor(props) {
super(props);
this.state = {
//num1: 0, if only used by other state
//num2: 0,
//op_type: "", if only used by other state
op: "",
result: 0,
no_right: 0,
no_wrong: 0,
options: <li />,
ans_pos: 0,
//options_and_pos: [[], 0] if only used by other state
};
}
componentDidMount() {
this.initQuiz(this.props.location.state.op_type);
}
initQuiz(op_type) {
if (op_type === "Addition") {
this.setState({
op:"+",
result: 2*this.genRandRange(1, 100)
});
/* Code */
}
else if (op_type === "Multiplication") {
this.setState({
op:"x",
result: Math.pow(this.genRandRange(1, 100),2),
options: this.getOptions(Math.pow(this.genRandRange(1, 100),2))[0].map((ele,
i) => (<li key={i}>{ele}</li>)),
ans_pos:this.getOptions(Math.pow(this.genRandRange(1, 100),2))[1]
});
}
}
genNums() {
this.setState({
num1: this.genRandRange(1, 100),
num2: this.genRandRange(1, 100)
});
}
getOptions(ans) {
/* Code */
return [ans_options, rand_pos];
}
render() {
return (
<div className="math_quiz_box">
/* JSX Code */
</div>
);
}
}
上面的代码只需执行一次setState,就可以防止出现无限循环或状态更新链之类的问题。
如果必须设置setState链,请使用
this.setState({
example:"example value"
},()=>{
// when example value has been set, then execute follow statement.
this.setState({
example2:this.state.example+"2" //example2:"example value2"
})
})