上述就是单个页面,在体验版是正常调用的,加载资源的域名也添加到downloadFile合法域名了,之前一直是正常的,今天上午突然就点击按钮没反应了
体验版使用正常,但是发布为正式版之后按钮点击无反应?<button class="button" bindtap="handleDownload"><text class="button-text">下载</text></button> <button class="button" bindtap="handleDetails"><text class="button-text">详情</text></button> handleDownload: function() { var that = this; wx.downloadFile({ url: that.data.src, success: function(res) { wx.saveImageToPhotosAlbum({ filePath: res.tempFilePath, success: function() { wx.showToast({ title: '下载成功' }); }, fail: function() { wx.showToast({ title: '下载失败' }); } }); } }); }, handleDetails: function() { if (this.videoAd) { this.videoAd.show().catch(() => { // 失败重试 this.videoAd.load() .then(() => this.videoAd.show()) .catch(err => { console.error('激励视频 广告显示失败', err) }) }) } },
03-04