微信小程序|【uni-app】搜索框的防抖处理

效果图:
【微信小程序|【uni-app】搜索框的防抖处理】微信小程序|【uni-app】搜索框的防抖处理
文章图片


data() { return { timer: null } }, methods: { search(res) { clearTimeout(this.timer)//清除延时器 this.timer = setTimeout(() => { //重新开启新的延时器 console.log('请求接口', res) }, 500) } }

    推荐阅读