问题描述:
测试机型huaweiP50 Pro,iphone12 Pro正常保存;iphone15 Pro max提示保存成功,相册中找不到目标图片。
图片保存前已确认以下内容:
- download地址已在后台配置;
- 相册保存权限已授权;
- 隐私协议已同意。
示例代码:
Page({
bindPlay() {
wx.downloadFile({
url: 'https://res.wx.qq.com/community/dist/community/images/icon_question_4b2595.svg',
success: function (res) {
wx.saveImageToPhotosAlbum({
filePath: res.tempFilePath,
success: (res) => {
console.log('res2: ', res);
wx.hideLoading({
complete: () => {
wx.showToast({
icon: 'none',
title: '图片已成功保存至手机相册'
});
}
})
},
fail: (err) => {
console.log('err2: ', err);
wx.hideLoading({
complete: () => {
wx.showToast({
icon: 'none',
title: '图片保存失败'
});
}
})
}
})
},
fail(err){
console.log('err',err)
}
})
},
})
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。