【下载文件】uniapp开发小程序,下载文件并保存到本地

导读:本篇文章讲解 【下载文件】uniapp开发小程序,下载文件并保存到本地,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

一、效果图如下:

实现效果:点击文件附件,下载到本地
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

二、具体代码:

<view class="contact" @click="downloadFun(item.enclosure)">点击下载</view>
// 下载附件
downloadFun(enclosure){
	var that = this
	//加载框动画
	uni.showLoading({title: '正在下载……'});
				
	// console.log(that.hostUrl + '/uploads'+ enclosure)
	uni.downloadFile({
		url: that.hostUrl + '/uploads'+ enclosure,//下载地址接口返回
		success: (data) => {
			console.log('打印data',data)
			if (data.statusCode === 200) {
				//隐藏加载框
				uni.hideLoading();
				//文件保存到本地
				uni.saveFile({
					tempFilePath: data.tempFilePath, //临时路径
					success: function(res) {
						// console.log('打印res',res)
						uni.showToast({
							icon: 'success',
							mask: true,
							// title: '文件已保存:' + res.savedFilePath, //保存路径
							title: '下载成功' , 
							duration: 2000,
					});
									
				//自动打开文档查看
				setTimeout(() => {
					var filePath = res.savedFilePath;
					uni.openDocument({  //新开页面打开文档,支持格式:doc, xls, ppt, pdf, docx, xlsx, pptx。
						 filePath: filePath,
						showMenu: true,
						success: function (res) {
							 console.log('打开文档成功');
						}
					});
				}, 2000)
			}
		});
	}
	},
	fail: (err) => {
		console.log(err);
		uni.showToast({
			icon: 'none',
			mask: true,
			title: '文件下载失败',
		});
	},
});
},

ending~

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/96012.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!