gpt4 book ai didi

javascript - Vue 中的去抖计算属性/getter

转载 作者:数据小太阳 更新时间:2023-10-29 04:26:45 25 4
gpt4 key购买 nike

我似乎无法去除 (lodash) 计算属性或 vuex getter。去抖函数总是返回未定义。

https://jsfiddle.net/guanzo/yqk0jp1j/2/

HTML:

<div id="app">
<input v-model="text">
<div>computed: {{ textComputed }} </div>
<div>debounced: {{ textDebounced }} </div>
</div>

JS:

new Vue({
el:'#app',
data:{
text:''
},
computed:{
textDebounced: _.debounce(function(){
return this.text
},500),
textComputed(){
return this.text
}
}

})

最佳答案

正如我在评论中提到的,去抖动本质上是一种异步操作,因此无法返回值。根据您的需要,您可能希望在输入 端进行去抖动。 text中的值和textComputed中的值没有区别,但是如果你v-model="textComputed",值设置将被去抖。

如果您特别想要一个变量的去抖动版本,mrogers 提供了一个很好的解决方案。

var x = new Vue({
el: '#app',
data: {
text: 'start'
},
computed: {
textComputed: {
get() {
return this.text;
},
set: _.debounce(function(newValue) {
this.text = newValue;
}, 500)
}
}
})
<script src="//cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.js"></script>
<div id="app">
<div>
Debounced input:
<input v-model="textComputed">
</div>
<div>
Immediate input:
<input v-model="text">
</div>
<div>computed: {{ textComputed }} </div>
<div>debounced: {{ text }} </div>
</div>

关于javascript - Vue 中的去抖计算属性/getter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44772629/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com