touchcancel事件触发不了
- 当前 Bug 的表现(可附上截图) 一个按钮同时绑定了touchcancel和touchstart事件,touchstart里面获取录音授权出现授权弹窗,触发不了touchcancel事件 - 预期表现 授权过后再提示用户重新开始操作 - 复现路径 - 提供一个最简复现 Demo 先清除语音授权再操作 <button type="default" bindtouchcancel='touchCancel' bindtouchstart='touchStart'> var hasError = false; touchStart: function() { wx.authorize({ scope: 'scope.record', success: function() { if(hasError){ console.log('ok'); }else{ console.log('err') } }, }) }, touchCancel: function(){//这里执行不到 hasError = true; console.log('touch cancel') },