H5页面,在微信浏览器内打开,想实现点击按钮下载保存图片到相册的功能该怎么实现?
这么写不行
微信提示下载图片失败 “errMsg”:"downloadImage":"missing arguments"
wx.downloadImage({
url: imageUrl,
isShowProgressTips: 1, // 默认为1,显示进度提示
success: (res) => {
console.log('res', res);
const localId = res.localId;
wx.saveImageToPhotosAlbum({
localId: localId,
success: () => {
alert('图片已保存到相册');
},
fail: (err) => {
alert('保存图片失败: ' + JSON.stringify(err));
}
});
},
fail: (err) => {
alert('下载图片失败: ' + JSON.stringify(err));
}
});
h5只能提示长按保存
这是小程序的接口,只能在小程序中调用,不支持在h5页面中调用
只能提示用户长按保存