摘要:
长按删除并解决点击的冲突 <view class="item-box" v-for="(item,index) in result" @click="more(item)" @touchstart.prevent="touchstart(item.topic, index)" @touchend.p 阅读全文
摘要:
用于定时请求接口或者刷新页面的操作 // 首先调用一次函数否则就要等5秒后才能执行 this.getData(); let timer = setInterval(() => { // 使用setTimeout是因为它可以清除定时器 setTimeout(this.getData, 0) }, 50 阅读全文