收藏
回答

父组件添加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>


回答关注问题邀请回答
收藏

1 个回答

  • L²
    2022-02-12

    解决了,把touchstart的catch改为bind。

    2022-02-12
    有用
    回复
登录 后发表内容