嗨,我正在尝试消除跳动以与文本搜索字段一起使用,但是我无法单击并在该字段中输入文本。当从构造函数中删除反跳时,我可以在字段中输入文本并进行搜索。
我在这里使用防抖功能。
constructor() {
this.myDebouncer = debounce(this.myDebouncer.bind(this), 1000);
state = {
value: '',
}
}
myDebouncer(event){
this.setState({
value: event.target.value
)}
}
render(){
onChange={this.props.myDebouncer.bind(this)}
}
有什么想法我要去哪里吗?谢谢