程序里是下面这样处理的,也就是说createRewardedVideoAd后立即show了。请问这样是不是有问题?请多多指教,万分感谢!
let videoAd = null
if (wx.createRewardedVideoAd) {
videoAd = wx.createRewardedVideoAd({
adUnitId: 'xxxxxxxxxxxxx'
})
}
if (videoAd) {
videoAd.show().catch(() => {
// 失败重试
videoAd.load()
.then(() => videoAd.show())
.catch(err => {
console.log('激励视频 广告显示失败')
})
})
}
建议等到加载完后