downWaterPhoto() { //保存到相册
var that = this
uni.saveImageToPhotosAlbum({
filePath: that.initImgSrc,
success: function() {
uni.showToast({
title: "保存成功",
icon: "none"
});
},
fail: function(err) {
if (err.errMsg == 'saveImageToPhotosAlbum:fail No Permission') {
that.getAlbumAuth()
} else {
uni.showToast({
title: "保存失败,请稍后重试",
icon: "none"
});
}
//that.getAlbumAuth()
console.log(err)
},
})
},
- 发布:2024-12-18 16:08
- 更新:2024-12-19 15:25
- 阅读:65
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: 10
HBuilderX类型: 正式
HBuilderX版本号: 4.29
手机系统: Android
手机系统版本号: Android 14
手机厂商: 小米
手机机型: Redmi Note 13 Pro
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
操作步骤:
预期结果:
成功
成功
实际结果:
失败
失败
now007 (作者)
@DCloud_Android_zl
-
now007 (作者)
uni.downloadFile({
url: item.url || item.path,
success: (res) => {
uni.hideLoading()
if (res.statusCode === 200) {
uni.saveImageToPhotosAlbum({
filePath: res.tempFilePath,
success: function() {
uni.showToast({
title: "下载完成,请至相册查看",
icon: "none"
});
},
fail: function() {
uni.showToast({
title: "下载失败,请稍后重试",
icon: "none"
});
}
});
} else {
this.bpyShowMsg('下载失败')
uni.hideLoading()
}
},
fail: () => {
this.bpyShowMsg('下载失败')
uni.hideLoading()
}
});2024-12-18 17:14
DCloud_Android_zl
发一个示例,我这边看一下
2024-12-18 16:26
now007 (作者)
回复 DCloud_Android_zl: 目前测试的这不行的机器都是 安卓14的
2024-12-18 17:22