在 debounce 函数中访问 this.$router
P粉541796322
P粉541796322 2023-09-06 16:21:17
0
1
699

我想根据用户输入的内容更改 URL。 防抖功能工作正常。但我似乎无法访问“this”变量。

“this”隐式具有类型“any”,因为它没有类型注释

searchbarPokemon: debounce(function (e: any) {
  this.$router.push(e.target.value);  
  console.log(e)
}, 1000)

而且去抖动发回的数据是最后一个字母。可以得到完整的句子吗?

编辑:在e.target.value处找到完整值

P粉541796322
P粉541796322

全部回复(1)
P粉968008175

您可以创建一个箭头函数来保留this'上下文:

searchbarPokemon: debounce((e: any) => {
  this.$router.push(e.target.value);  
  console.log(e)
}, 1000)
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板