是SSL证书到期的事情,如果有人找到这个,可以排查一下自己的ssl证书问题
微信小程序莫名其妙出现系统开小差,请问如何解决和问题原因是什么?代码没有变化,服务器也能ping有反应,不知道这个是什么导致的,能否告知什么情况下出现这个以及如何处理? [图片]
2023-07-10methods: { advertising() { if (wx.createRewardedVideoAd) { rewardedVideoAd = wx.createRewardedVideoAd({ adUnitId: _this.adUnit.adunit }) rewardedVideoAd.onLoad(() => { console.log('激励视频 广告加载成功') }) rewardedVideoAd.onError((err) => { console.log('onError event emit', err) }) } }, info() { if (this.isinfo) { return; } this.isinfo = true; this.token = uni.$mk.vuex.get('userInfo.token'); if (this.token && this.token.length > 0) { this.isinfo = false; uni.navigateTo({ url: '/pages/index/userInfo' }) } else { this.login(); } }, login() { _this.$mk.util.authorToken().then(res => { if (res) { _this.init(); } else { _this.isinfo = false; } }); }, init() { _this.$mk.api.index.userInfo().then(res => { if (res.code == 0) { _this.userInfo = res.data.userInfo; _this.isinfo = false; uni.$mk.vuex.set('userInfo.data', _this.userInfo); } }); _this.$mk.api.index.advertising().then(res => { if (res.code == 0) { _this.adUnit = res.data; _this.advertising(); } }); }, play() { rewardedVideoAd.show().then(() => { console.log('激励视频 广告显示'); }) rewardedVideoAd.onClose(res => { console.log('onClose--', res); if (res && res.isEnded) { console.log('我看完了'); _this.$mk.api.index.complate().then(res => { if (res.code == 0) { console.log('加次数', res) uni.showToast({ title: '领取次数成功', icon: 'none' }) rewardedVideoAd.offClose(); _this.init(); } else { uni.showToast({ title: res.message, icon: 'none' }) } }); } else { console.log('我没看完'); uni.showToast({ title: '广告未看完,获取次数失败', icon: 'none' }) } }) } },
为什么有的用户能点击观看广告获取次数,为什么有的用户点击观看广告没有任何反应?开发了一个小程序,然后用户需要点击广告获取次数。但是发现部分用户点击观看广告获取次数没有任何反应。请问这是怎么回事,如何debug?同样的操作系统有的人可以有的人不能。
2023-06-20