郑州微信小程序定制开发过程中,遇到uniapp开发解决多次点击触发事件。
下面是代码,可以直接复制用,不过没有总结成组件或者函数,需要自己再组织下。
let that =this;
if(that.noClick){
that.noClick=false;
加函数
setTimeout(function(){
that.noClick=true;
},3000)
}else{
uni.showToast({
title:'请勿重复点击',
duration:2000,
icon:'none'
})
}
其中加函数,这里添加自己的执行函数。