vue element el-input 搜索实现防抖 @input事件请求频繁

不要使用el-input的@input事件,使用这个事件,使用防抖无效。上实际代码,如下:

<template>
// 其他代码省略
 <el-input suffix-icon="el-icon-search" v-model="page.searchCode" clearable></el-input>
</template>
<script>
	data() {
	    return {
	      timer: '',
	      page:{
	      	searchCode:''//搜索框绑定值
	      }
	    }
	  },
	  watch: {
	    'page.searchCode': {
	      deep: true,
	      handler(newVal, oldVal) {
	        // if (newVal.trim().length !== 0) {
	         //this.getList是methods中延迟后调用的方法 延迟500ms
	        this.debounce(this.getList, 500) 
	        // }
	      }
	    }
	  },
	  methods: {
	    //防抖
	    debounce(fn, wait) {
	      if (this.timer !== null) {
	        clearTimeout(this.timer)
	      }
	      this.timer = setTimeout(fn, wait)
	    }
	  },
	  getList(){}//请求写在这里面即可
	}
</script>

你可能感兴趣的:(vue+element,javascript,vue.js)