關(guān)于vue項(xiàng)目中搜索節(jié)流的實(shí)現(xiàn)





























我們經(jīng)常會(huì)遇到這種需求,現(xiàn)在我們?cè)谑褂冒俣人阉鞯臅r(shí)候他們的思想也是
根據(jù)防抖節(jié)流而實(shí)現(xiàn)的,至于用防抖還是節(jié)流根據(jù)自己需求。

<template>
 <input type="text"   v-model.trim="sse">
</template>
<script>
const delay = (function () {
  let timer = 0
  return function (callback, ms) {
    clearTimeout(timer)
    timer = setTimeout(callback, ms)
  }
})()
export default {
    name :  'search',
    watch : {
        sse () {
     delay(() => {
        this.search()
      }, 500)
},
methods :{
    search () {
        this.$axios
          .get([url])
          .then(response => {
            // success
          })
          .catch(error => {
            // error
            alert('失??!')
          })
}
}
}
}

</script>




作者:Vam的金豆之路

主要領(lǐng)域:前端開(kāi)發(fā)

我的微信:maomin9761

微信公眾號(hào):前端歷劫之路