<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)
})
})
}
},
相关的隐私保护协议添加了吗
执行下fail,看看完整报错信息
上述就是单个页面,在体验版是正常调用的,加载资源的域名也添加到downloadFile合法域名了,之前一直是正常的,今天上午突然就点击按钮没反应了