- 激励视频推送是文章阅读类视频倒计时数完点左上角关闭不走rewardedVideoAd.onClose
[图片]这种视频倒计时数完会走正常播放下发奖励 rewardedVideoAd.onClose((res) => { if (res && res.isEnded) { that.sportGetBubblesFn1() console.log('正常播放结束,可以下发游戏奖励') } else { console.log('播放中途退出,不下发游戏奖励') } }) [图片]这种广告点左上角关闭不能走正常播放下发奖励的方法
2019-11-15 - 激励视频页面加载时加载失败rewardedVideoAd.onError方法不执
激励视频页面加载时加载失败rewardedVideoAd.onError方法不执,提供的代码片段adUnitId是正确的,可以故意多加一位写错测试
2019-09-11 - 小程序button钳套cover-image标签图片显示不全
[图片]
2019-08-13 - 微信聊天记录图片长按不识别图片中小程序
这个图片扫码可以识别小程序,在微信群里聊天发给其他朋友,长按图片不识别图片中小程序 [图片]
2019-07-26 - 小程序getUpdateManager强制更新后页面button按钮点击无效
没强制更新前点击没问题,更新后就出问题,点击无效 <form class='box' > <button class='stepExchange' form-type="submit" bindtap='stepExchangeFn'> <view>当前金币数量</view> <view>{{coins}}</view> <view>今日步数<text>{{steps}}</text>步</view> <view>{{steps == null ? "获取微信步数" : "步数换为金币"}} </view> </button> </form> stepExchangeFn(){ let that = this; app.getSetting((data) => { if (data[1] == undefined) {//微信运动授权 wx.getWeRunData({ success(res) { app.encryptedData = res.encryptedData; that.getStepsFn(); that.authInfoSuccessFn(); } }) } else if (data[1] == false) { wx.showModal({ title: '提示', content: '抱歉,你还没有授权微信运动,点确定去设置页面打开微信运动', success(res) { if (res.confirm) { wx.openSetting({ success(res) { wx.getWeRunData({ success(res) { app.encryptedData = res.encryptedData; that.getStepsFn(); that.authInfoSuccessFn(); } }) } }) } } }) } else if (that.data.steps <= 0) { wx.showModal({ title: '提示', content: '没有可兑换的步数', showCancel: !1 }) } else { wx.showModal({ title: '提示', content: that.data.steps + "步数兑换为" + (that.data.steps / 1000).toFixed(2) + "金币", success(res) { if (res.confirm) { wx.showLoading({ mask: !0, }) if (!that.data.stepExchangeOff){ return false; } that.setData({ stepExchangeOff: false }) wx.request({ url: app.Url + '/api/sport/stepExchange', method: 'POST', header: { 'Authorization': app.Authorization }, data: { id: app.id, formId: that.data.formId }, success: function (res) { if (res.data.code == 0) { app.coins = res.data.data.coins; that.setData({ coins: res.data.data.coins, steps: 0, popYhjbOff: true }) that.audioCtx1.play() } else { wx.showModal({ title: '提示', content: res.data.message, showCancel: false }) } }, complete() { that.setData({ stepExchangeOff: true }) wx.hideLoading() } }) } } }) } }) }
2019-07-25 - wx.getUpdateManager发布新版本更新机制监听无效,返回false
[图片]
2019-06-28 - 微信7.0后之前发布的小程序分享时不弹出分享成功,强行退出小程序
- 当前 Bug 的表现(可附上截图) 直接退出了,没发截图 - 预期表现 - 复现路径 - 提供一个最简复现 Demo
2019-06-15