获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
看看代码里是否有两个onReady方法
为啥我的弹幕发送不出去Page({ onReady() { this.videoCtx = wx.createVideoContext('myVideo') }, bindSendDanmu: function () { this.videoContext.sendDanmu({ text: this.inputValue, color: getRandomColor() }) } }) 一旦我点击发送弹幕按钮就报错: thirdScriptError Cannot read property 'sendDanmu' of undefined;at pages/cover-view/cover-view page bindSendDanmu function TypeError: Cannot read property 'sendDanmu' of undefined 如果使用 wx.createVideoContext('myVideo').sendDanmu({}) 就没问题 WXML: [图片]
2023-06-10