在用电脑真机调试播放完广告进入下发奖励页面出现这个错误。
VM22:2 Uncaught (in promise) thirdScriptError
{"errMsg":"updateTextView:fail:got 'null' when get view by the given viewId"}
Object
VM22:2 Uncaught (in promise) thirdScriptError
{"errMsg":"updateTextView:fail:got 'null' when get view by the given viewId"}
Object
如果之前播放的是浏览类广告返回时出现小程序死机状态。
如果播放视频类的广告不会出现小程序死机,但也出上面的报错信息。
一样
有下文么
我的也是这个问题
你这个问题解决了吗 我也遇到了
楼主解决了嘛
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
openVideoAd() {
console.log('打开激励视频');
// 在合适的位置打开广告
if (videoAd) {
videoAd.show().catch(err => {
// 失败重试
videoAd.load()
.then(() => videoAd.show())
})
}
},
onLoad() {
if (wx.createRewardedVideoAd) {
videoAd = wx.createRewardedVideoAd({
adUnitId: 'adunit-我的id'
})
videoAd.onLoad(() => {})
videoAd.onError((err) => {})
videoAd.onClose((res) => {
if(res && res.isEnded){
wx.navigateTo({
url: '../tcbz/tcbz',
})
}else{
}
console.log('onClose event emit', res)
})
}
},
这样写没问题吧????