'triggerEvent' of undefined ? 不执行
发布于 6 年前 作者 daiping 7857 次浏览 来自 问答
使用自定义<Child>组件
<parent>
  <Child isShow="{{isShow}}" bind:myEvent="onMyEnvent></Child>
</parent>

在<Child>中
  <view><button bindtap="handleDelete"/></view>

methods:{
  handleDelete(){
  let that=this
    wx.showToast({
   title'操作成功',
   success:function(){
     console.log('11111111111111111', )
     that.triggerEvent('myevent',{isShow:false}) // Cannot read property 'triggerEvent' of undefined
          // 或者不执行
    }
   })
  }
}
回到顶部