安卓可以正常保存,IOS一直报{ errMsg":"saveImageToPhotosAlbum:fail [Gallery:3302]未能完成操作。(PHPhotosErrorDomain错误3302。}
uni.downloadFile({
url: ${this.uploadPrefix}${poster.poster}
,
success: (res) => {
console.log('res:',res,${this.uploadPrefix}${poster.poster}
);
if (res.statusCode === 200) {
uni.saveImageToPhotosAlbum({
filePath: res.tempFilePath,
success: function () {
uni.showToast({
icon: 'success',
title: '保存成功!'
})
},
fail(err) {
console.log('err: ', JSON.stringify(err));
uni.showToast({
icon: 'none',
title: 保存失败: ${JSON.stringify(err)}
})
}
});
}
}
});
1***@qq.com (作者)
保存图片走了七牛的地址 https://img-bjx-dancing-finger.8-star.cn/P8D1Vy5KdfacjoAAAAASUVORK5CYII=
IOS一直报错安卓可以正常保存
2023-04-17 14:11
FullStack
回复 1***@qq.com: 你这图片,没有后缀
2023-04-17 14:53