wx.downloadFile({
url: this.data.filePath,
success: function (res) {
wx.saveImageToPhotosAlbum({
filePath: res.tempFilePath,
success(res) {
wx.showToast({
title: '保存成功!',
})
},
fail(err) {
wx.showToast({
title: '保存失败!',
})
}
})
}
})
以保存图片到手机相册为例,小程序体验版可以下载图片并保存到手机相册,可小程序正式版却不调用wx.downloadFile()这个api。
已经解决 ,后端响应的下载地址不是https协议,小程序正式版无法通信。
请检查下MP后台downLoadFile合法域名是否已经设置。
记得使用https
代码里也必须使用https
你可以在fail里打印下具体的error看看