ReactJS onClick 状态改变一步

IT技术 javascript reactjs state
2021-05-08 17:13:49

我正在使用 ReactJS 构建一个非常原始的测验应用程序,但无法更新Questions组件的状态它的行为是将questions数组的正确索引呈现给 DOM 尽管this.state.questionNumber总是落后于DOM一步handleContinue()

import React from "react"

export default class Questions extends React.Component {
  constructor() {
    super()
    this.state = {
      questionNumber: 1
    }
  }

  //when Continue button is clicked
  handleContinue() {
    if (this.state.questionNumber > 3) {
      this.props.unMount()
    } else {
      this.setState({
        questionNumber: this.state.questionNumber + 1
      })
      this.props.changeHeader("Question " + this.state.questionNumber)
    }
  }

  render() {
    const questions = ["blargh?", "blah blah blah?", "how many dogs?"]
    return (
      <div class="container-fluid text-center">
        <h1>{questions[this.state.questionNumber - 1]}</h1>
        <button type="button" class="btn btn-primary" onClick={this.handleContinue.bind(this)}>Continue</button>
      </div>
    )
  }
}
2个回答

setState()不必是同步操作

setState()不会立即变异,this.state而是创建一个挂起的状态转换。访问this.state船尾

无法保证调用的同步操作,setState并且可能会批处理调用以提高性能。

出于这个原因,this.state.questionNumber这里可能仍然保留以前的值:

this.props.changeHeader("Question " + this.state.questionNumber)

相反,使用状态转换完成后调用回调函数

this.setState({
    questionNumber: this.state.questionNumber + 1
}, () => {
    this.props.changeHeader("Question " + this.state.questionNumber)
})

正如 Sandwichz 所说,如果您在使用 setState 后立即访问状态,则无法保证实际值。你可以这样做:

handleContinue() {
  if (this.state.questionNumber > 3) {
    this.props.unMount()
  } else {
    const newQuestionNumber = this.state.questionNumber + 1
    this.setState({
      questionNumber: newQuestionNumber
    })
    this.props.changeHeader("Question " + newQuestionNumber)
  }
}