获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
解决了,把touchstart的catch改为bind。
父组件添加catch事件,导致子组件tap事件无法被触发,如何解决?<wxs src="./touch.wxs" module="touch" /> <view catch:touchstart="{{touch.touchstart}}" catch:touchmove="{{touch.touchmove}}" catch:touchend="{{touch.touchend}}"> <view> <view bind:tap="handleTap">删除</view> </view> <view> <view bind:tap="handleTap">删除</view> </view> </view>
2022-02-12