SetState不是OnChange上的函数

时间:2016-08-28 05:46:19

标签: javascript reactjs state onchange setstate

使用滑块更改React状态中“text”的值。

继续收到错误:

“App.js:90 Uncaught TypeError:this.setState不是一个函数”尽管我做了最好的故障排除工作。

修复有什么用?

  class App extends Component {
  constructor(props) {
      super(props);
      this.state = {list: [{x: "Before Pool", y:85000}, {x: "After Pool", y:82000}], text: 0, options: {bathrooms:'', bedrooms:'', sqft:''}};
    }

  componentDidMount() {
        setTimeout(() => {
         this.setState({list: [{x: "Before Pool", y:60000}, {x: "After Pool", y:30000}]});
         console.log("testing", this.state.text);
       }, 2000) ;
  }
  handleChange (event) {
    console.log("from handle change", event);
   this.setState({text : event });
  }
  render() {
    return (
      <div className="App">
          <div>
             <div style={wrapperStyle}>
               <p># of Bathrooms</p>
               <Slider min={0} max={20} defaultValue={3} onChange={this.handleChange} />
             </div>

enter image description here enter image description here

4 个答案:

答案 0 :(得分:2)

您需要绑定handleChange方法

<Slider min={0} max={20} defaultValue={3} onChange={this.handleChange.bind(this)}

答案 1 :(得分:1)

您需要将状态绑定到setTimeout内的回调,因为您处于不同的上下文中。 我相信这会解决问题:

setTimeout(() => {
 this.setState({list: [{x: "Before Pool", y:60000}, {x: "After Pool", y:30000}]});
 console.log("testing", this.state.text);
   }.bind(this), 2000) ;

答案 2 :(得分:1)

答案很简单:你正在查看错误的this

由于您要在闭包中编写回调,因此知道您无法从外部访问this非常重要。它总是指当前的背景。

作为一种解决方法,定义您自己的变量(通常称为self)以在闭包内使用:

componentDidMount() {
    var self = this; // copy the reference
    setTimeout(() => {
        self.setState({list: [{x: "Before Pool", y:60000}, {x: "After Pool", y:30000}]});
        console.log("testing", this.state.text);
    }, 2000) ;
}

答案 3 :(得分:0)

您需要在此处绑定handleChange方法

<Slider min={0} max={20} defaultValue={3} onChange={this.handleChange} />

这应该看起来像这样

<Slider min={0} max={20} defaultValue={3} onChange={this.handleChange.bind(this)} />

或者您可以在方法的签名中简单地使用“箭头函数”,最好一直使用此功能来节省您一直绑定的时间。它应该看起来像这样:

handleChange = event => {
    console.log("from handle change", event);
    this.setState({text : event });
  }