小程序
小游戏
企业微信
微信支付
扫描小程序码分享
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
参考代码
rewardedVideoAd.show() .catch(() => { rewardedVideoAd.load() .then(() => rewardedVideoAd.show()) .catch(err => { console.log('激励视频广告显示失败'); //添加自己的处理逻辑 }) });
如何跳过看视频获取内容 直接点击按钮显示隐藏内容。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
参考代码
rewardedVideoAd.show() .catch(() => { rewardedVideoAd.load() .then(() => rewardedVideoAd.show()) .catch(err => { console.log('激励视频广告显示失败'); //添加自己的处理逻辑 }) });
var self = this;
if (wx.createRewardedVideoAd) {
rewardedVideoAd = wx.createRewardedVideoAd({ adUnitId: excitationAdId })
rewardedVideoAd.onLoad(() => {
console.log('onLoad event emit')
})
rewardedVideoAd.onError((err) => {
console.log(err);
this.setData({
detailSummaryHeight: ''
})
})
rewardedVideoAd.onClose((res) => {//res
var id = self.data.detail.id;
if (res && res.isEnded) {
var nowDate = new Date();
nowDate = nowDate.getFullYear() + "-" + (nowDate.getMonth() + 1) + '-' + nowDate.getDate();
var openAdLogs = wx.getStorageSync('openAdLogs') || [];
// 过滤重复值
if (openAdLogs.length > 0) {
openAdLogs = openAdLogs.filter(function (log) {
return log["id"] !== id;
});
}
// 如果超过指定数量不再记录
if (openAdLogs.length < 21) {
var log = {
"id": id,
"date": nowDate
}
openAdLogs.unshift(log);
wx.setStorageSync('openAdLogs', openAdLogs);
console.log(openAdLogs);
}
this.setData({
detailSummaryHeight: '',
start_play:true,
is_play:true,
play_end:true
})
} else {
wx.showToast({
title: "你中途关闭了视频",
icon: "none",
duration: 3000
});
}
})
}
},
// 阅读更多
readMore: function () {
var self = this;
var platform = self.data.platform
console.log('platform',platform)
if (platform == 'devtools') {
wx.showToast({
title: "开发工具无法显示激励视频",
icon: "none",
duration: 2000
});
self.setData({
detailSummaryHeight: ''
})
}
else {
rewardedVideoAd.show()
.catch(() => {
rewardedVideoAd.load()
.then(() => rewardedVideoAd.show()
)
.catch(err => {
console.log('激励视频 广告显示失败');
self.setData({
detailSummaryHeight: ''
})
})
})
}
}
})
这是原有的代码片段