使用自定义<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
// 或者不执行
}
})
}
}
首先第一处错误事件绑定大小写问题;
报错原因你要排查一下,我这边自己写了测试组件,没有报错。