我想根據使用者輸入的內容更改 URL。 防手震功能運作正常。但我似乎無法存取“this”變數。
“this”隱式有型別“any”,因為它沒有型別註解
searchbarPokemon: debounce(function (e: any) { this.$router.push(e.target.value); console.log(e) }, 1000)
而且去抖動發回的資料是最後一個字母。可以得到完整的句子嗎?
編輯:在e.target.value處找到完整值
P粉9680081752023-09-07 15:38:08
您可以建立一個箭頭函數來保留this
'上下文:
searchbarPokemon: debounce((e: any) => { this.$router.push(e.target.value); console.log(e) }, 1000)