uniapp微信小程序下载接口返回的图片

由于第一次做,在参考了许多前辈们的方法后,最后找到了一个比较适合自己需求的方法,如下:

1、首先,点击下载按钮 触发下载事件

<view class="btn_div" @tap="clickNav" hover-class="btnHoverClass">
	<view>
		<image class="img" src="@/static/pro_img/down.png" mode="widthFix"></image>
		<view>下载图片</view>
	</view>
</view>

2、请求代码,responseType= “arraybuffer”, 是请求文件流,必须带入的属性,该属性在uniapp中不支持blob

uni.request({
	url: config.baseUrl + '/core/projectBase/exportImage', //服务请求地址
	data: params, //服务需要的参数
	header: {
		"content-type": "application/json",
		"Authorization": uni.getStorageSync('lifeData').vuex_token,
	},
	method: 'POST', //请求方式
	responseType: "arraybuffer", //此处是请求文件流,必须带入的属性
	success: function(res) {
		if (res.statusCode === 200) {
			var imgSrc = wx.arrayBufferToBase64(res.data); //二进制流转为base64编码
			var save = wx.getFileSystemManager();
			var number = Math.random();
			save.writeFile({
				filePath: wx.env.USER_DATA_PATH + '/pic' + number + '.png',
				data: imgSrc,
				encoding: 'base64',
				success: res => {
					wx.saveImageToPhotosAlbum({ //保存为png格式到相册
						filePath: wx.env.USER_DATA_PATH + '/pic' +
							number + '.png',
						success: function(res) {
							wx.showToast({
								title: '图片下载成功,请到相册查看',
								icon: 'none',
								duration: 2000, //提示的延迟时间,单位毫秒,默认:1500
							})

						},
						fail: function(err) {
							wx.showToast({
								title: '下载失败',
								icon: 'none',
								duration: 2000, //提示的延迟时间,单位毫秒,默认:1500
							})
						}
					})
				},
				fail: err => {
					console.log(err)
				}
			})
		}
	},
	fail: function(error) {
		console.log(error);
	}
});

以上是个人在开发中碰到的功能,以上内容仅供参考,如有问题欢迎纠正

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值