微信小程序之后台获取广告值
今天跟同学交流,突然说到这个话题
onLoad: function () {
var that = this;
wx.request({
url: 'xxxx/api.php',//你的api
data: {
},
header: {
'content-type': 'application/json' // 默认值
},
success(res) {
console.log(res.data[0]);//打印数组 [0]也可以是定义的其他的名字,具体看写法
that.setData({
gglist: res.data[0],//这里是获取数组的全部
});
}
})
}
然后在调用激励广告前面定义
let jili = this.data.gglist.jili//重新定义
videoAd = wx.createRewardedVideoAd({
adUnitId: jili, //调用你定义的
})
最后完成,插屏广告也是一样的!
其他广告调用简单一些!