这是由于
this.delta不受约束
this。
this.delta = this.delta.bind(this)在构造函数中:
constructor(props) { super(props); this.state = { count : 1 }; this.delta = this.delta.bind(this);}
当前,您正在调用绑定。但是bind返回一个绑定函数。您需要将函数设置为其绑定值。
欢迎分享,转载请注明来源:内存溢出
这是由于
this.delta不受约束
this。
this.delta = this.delta.bind(this)在构造函数中:
constructor(props) { super(props); this.state = { count : 1 }; this.delta = this.delta.bind(this);}
当前,您正在调用绑定。但是bind返回一个绑定函数。您需要将函数设置为其绑定值。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)