微信小程序存储图片到相册时产生的bug
最主要的原因是微信小程序后台需要勾选获取用户隐私(而且需要配置隐私策略)
[wxapplib]] backgroundfetch privacy fail {“errno”:101,”errMsg”:”private_getBackgroundFetchData:fail
https://blog.csdn.net/weixin_53231455/article/details/133621253
uni.authorize({
scope: 'scope.writePhotosAlbum',
success: () => {
// 在授权成功后执行保存图片的操作
this.saveImage(url);
},
fail: () => {
uni.hideLoading()
uni.showModal({
// title: '授权失败,请前往设置页授权',
title: '授权失败',
// icon: 'none',
content: '请前往设置页手动授权该权限',
showCancel: false,
confirmText: '去设置',
success: res => {
if (res.confirm) {
// 用户点击确定,跳转到设置页
uni.openSetting({
success: () => {
// 设置页打开成功后的操作
uni.hideLoading()
}
});
}
}
});
}
});