data:{
timer: null
},
methods:{
handleChange(){
this.timer = new Date().getTime()//每次搜索框值改变都保存当前时间
setTimeout(()=>{
//0.5秒后比较当前时间和最后一次搜索框值改变时的时间的差值
//只有大于等于setTimeout的间隔才调取接口
if(new Date().getTime() - this.timer >= 500){
this.doAjax()
}
},500)
}
}