eventChannel真机调试不能传递信息?
需要在页面间传递信息,使用: 发送页面源码: let index = e.currentTarget.dataset.index console.log('jump to season:', index) wx.navigateTo({url: '../season/season', success:function(res){res.eventChannel.emit('sendSeasonNo', index)}}) 接收页面源码: var tmp eventChannel.on('sendSeasonNo', function(data){tmp=data}) 开发工具调试正常,但是真机调试,在执行完eventChannel.on之后,tmp还是undefined。