微信小程序广告分类
近期有一个需求是跟广告相关,趁此机会,对微信广告这里进行了详细的了解。
下面是对广告相关的大概介绍官方文档
相关广告形态
Banner广告
微信官方文档也有写:
<view class="adContainer">
<ad unit-id="xxxx" bindload="adLoad" binderror="adError" bindclose="adClose"></ad>
</view>
Page({
adLoad() {
console.log('Banner 广告加载成功')
},
adError(err) {
console.log('Banner 广告加载失败', err)
},
adClose() {
console.log('Banner 广告关闭')
}
})
激励视频广告
激励视频广告层级最高,会覆盖在普通组件上。
是调用一个API即可,仅对当前页面有效,不允许跨页面使用。
let rewardedVideoAd = null
Page({
onLoad() {
if(wx.createRewardedVideoAd){
rewardedVideoAd = wx.createRewardedVideoAd({
adUnitId: 'xxxx' })
rewardedVideoAd.