0
以我非tyepscript限定性反應組分我不得不打字稿在陣營:上`this`
componentWillMount() {
this.delayedSearch = _.debounce((val) => {
this.onQuerySearch(val);
}, 1000);
}
用於對輸入字段去抖動打字。然後在輸入欄上我有<input onChange={event => this.delayedSearch(e.value)}>
但是現在,當我切換到Typescipt,我的_.debounce
分配給我一個錯誤:
Property 'delayedSearch' does not exist on type 'UserSearch'.
我該如何解決這個問題?