我正在尝试对我设法做到的操作使用 debounce,但是我想将 e 作为参数传递,但它不起作用。有什么办法可以做到这一点吗?
constructor(props, context) {
super(props, context);
this.testing = _.debounce(this.testing.bind(this), 2000);
}
@action testing(e) {
alert("debounced!!");
//use e.target ...
}
如果我拿走 e 它将进入函数,否则不会。我应该怎么做才能解决这个问题?