您好,登錄后才能下訂單哦!
效果圖:
搜索分類(lèi)2種情況,一般的是當(dāng)用戶輸入完,點(diǎn)擊確定的按鈕在向后發(fā)送請(qǐng)求,還有一種就是的我一邊輸入,一邊向后臺(tái)發(fā)送請(qǐng)求,但是會(huì)產(chǎn)生一個(gè)性能的問(wèn)題,就是一直發(fā)請(qǐng)求造成頁(yè)面的卡頓,這里就是使用截流函數(shù),當(dāng)用戶每次點(diǎn)擊鍵盤(pán)之間超過(guò)300ms就發(fā)送請(qǐng)求,否則不請(qǐng)求
search.vue
<template> <div id="search"> <input type="text" class="search" placeholder="搜索" v-model.trim="title" /> </div> </template>
js:
<script> // 節(jié)流函數(shù) const delay = (function() { let timer = 0; return function(callback, ms) { clearTimeout(timer); timer = setTimeout(callback, ms); }; })(); export default { name: 'search', data() { return { title: '', search:[] }; }, watch: { //watch title change title() { delay(() => { this.fetchData(); }, 300); }, }, methods: { async fetchData(val) { const res = await this.fetch({ url: '寫(xiě)上你的URL', method: 'GET', params: { title: this.title }, }); this.search = res.data.list; }, }, mounted() {}, }; </script>
以上這篇vue 實(shí)現(xiàn)邊輸入邊搜索功能的實(shí)例講解就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。