this.handleChange.bind(this) 并渲染使用

this.handleChange.bind(this) and render use

我从 react bootstrap 网站上得到了这段代码 https://react-bootstrap.github.io/components/forms/ 我想知道代码中下面的用法

  1. this.handleChange = this.handleChange.bind(this): 这个就是让它 所以你可以在 handlechange()
  2. 中使用变量 "this"
  3. 通过设置一个空值,以后这个键就不会为空 如果您尝试在未设置值的情况下引用它
  4. validationState 正在作为 属性
  5. 传递到 FormGroup
  6. 渲染不在同一个 class 所以 FormExample 正在 由它之外的其他东西呈现。

希望对您有所帮助