'triggerEvent' of undefined ? 不执行
使用自定义<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
// 或者不执行
}
})
}
}