您如何在React.js中执行反跳?
我想对handleOnChange进行反跳。
我尝试过,debounce(this.handleOnChange, 200)
但没有用。
function debounce(fn, delay) {
var timer = null;
return function() {
var context = this,
args = arguments;
clearTimeout(timer);
timer = setTimeout(function() {
fn.apply(context, args);
}, delay);
};
}
var SearchBox = React.createClass({
render: function() {
return <input type="search" name="p" onChange={this.handleOnChange} />;
},
handleOnChange: function(event) {
// make ajax call
}
});
扩展useState挂钩
使用挂钩
https://trippingoncode.com/react-debounce-hook/