downLoadHandle(src) {
wx.downloadFile({
url: src,
success:function (res) {
wx.saveImageToPhotosAlbum({
filePath: res.tempFilePath,
success:function (data) {
wx.showToast({
title: '保存到相册成功',
duration: 500
})
},
fail:function(err) {
wx.showToast({
icon: 'none',
title: '保存到相册失败',
duration: 500
})
}
})
},
fail: function(err) {
wx.showToast({
icon: 'none',
title: '保存失败',
duration: 500
})
}
})
}
这个有没有进行配置呢,下载需要配置合法域名的,本地正常应该是你勾选了不验证合法域名
报错信息是啥?
请学会如何「提问」(👈戳我)