我正在对远程数据使用Vuetify自动完成功能,并且我想限制/消除API调用(当用户在自动完成功能中键入文本时,等待500毫秒以调用API)。我该怎么办?
我看到了一个关于debounce-search
属性的Stack OverFlow帖子,但是对我来说不起作用,并且我也没有看到关于此属性的任何Vuetify文档。
答案 0 :(得分:2)
您可以将反跳添加到进行API调用的函数中。可以使用setTimeout
和clearTimeout
来实现去抖动器,以便延迟新呼叫并取消任何未决呼叫:
methods: {
fetchEntriesDebounced() {
// cancel pending call
clearTimeout(this._timerId)
// delay new call 500ms
this._timerId = setTimeout(() => {
this.fetch()
}, 500)
}
}
这种方法可以绑定到v-autocomplete
的{{3}}道具上的watcher:
<template>
<v-autocomplete :search-input.sync="search" />
</template>
<script>
export default {
data() {
return {
search: null
}
},
watch: {
search (val) {
if (!val) {
return
}
this.fetchEntriesDebounced()
}
},
methods: { /* ... */ }
}
</script>
答案 1 :(得分:1)
非常感谢。 有用。 这是我的代码(对地址进行地理编码):
<v-autocomplete
ref="refCombobox"
v-model="adresseSelectionnee"
:items="items"
:loading="isLoading"
:search-input.sync="search"
no-filter
hide-details
hide-selected
item-text="full"
item-value="address"
placeholder="Où ?"
append-icon="search"
return-object
dense
solo
class="caption"
clearable
hide-no-data
></v-autocomplete>
watch: {
search(val) {
if (!val) {
return;
}
this.geocodeGoogle(val);
}
},
methods: {
geocodeGoogle(val) {
// cancel pending call
clearTimeout(this._timerId);
this.isLoading = true;
// delay new call 500ms
this._timerId = setTimeout(() => {
const geocoder = new this.$google.maps.Geocoder();
geocoder.geocode({ address: val, region: "FR" }, (results, status) => {
if (status === "OK") {
this.adressesGoogle = results;
this.isLoading = false;
} else {
this.isLoading = false;
}
});
}, 500);
},