嵌套对象的 setState

IT技术 javascript reactjs jsx
2021-05-12 14:09:38

我有一个嵌套对象作为状态,我有一个组件中的表单。我正在考虑每次用户在表单中输入内容时更新状态,并避免为每个输入创建多个函数,我正在考虑使用 switch 创建单个函数。

  1. 使用 switch 创建单个函数是个好主意吗?
  2. 如何更新对象的单个嵌套元素?

我已尝试使用以下代码,但它不起作用:

class App extends Component {
  constructor(props) {
      super(props)
      this.state = {
        minutes: null,
        interests: {
          business: false,
          code: false,
          design: false
        },
        errors: []
      }
  }

  updatePreferences = (preferenceName, enteredValue) => {
    switch (preferenceName) {
      case preferenceName === "minutes":
        this.setState({minutes: enteredValue})
        return
      case preferenceName === "business":
        this.setState({interests.business: !this.state.interests.business})
        return
      case default:
        return
    }

  }
}
1个回答

当然你可以使用switch,AFAIK 没什么错。

并使用setState. 看例子

  updatePreferences = (preferenceName, enteredValue) => {
     switch (preferenceName) {
      case preferenceName === "minutes":
        this.setState({minutes: enteredValue});
        return
      case preferenceName === "business":
        this.setState({...this.state, interests: {
          ...this.state.interests,
          business: !this.state.interests.business
        }});
        return
      default:
        return
    }

  }