基本上从不同类方法中的函数调用类方法。
export default class Test extends Component {...
constructor(props) {
super(props)
this.state = {};
}
meth1() {
//do_stuff...
}
meth2() {
var test = function() {
this.meth1() // doesn't work
}
_.debounce(test, 200);
}
}
我知道这可能与绑定等有关。我虽然有点迷失。这只是填充空间并满足问题验证要求的更多文本。