小程序 下载-微信小程序和支付宝小程序区别
发布时间:2023-01-27 10:15 浏览次数:次 作者:佚名
简介: wx.downloadFile(OBJECT) 下载文件资源到本地,客户端直接发起HTTP GET请求,返回文件本地临时路径。 wx.openDocument(OBJECT) open a new page 打开一个文档,支持格式:doc, xls, ppt, pdf, docx, xlsx, pptx。
调用wx.downloadFile下载文件小程序 下载,在成功回调函数里面,然后调用wx.openDocument打开预览下载的文件。
注意:如果需要持久化保存,需要主动调用wx.saveFile,以便下次启动小程序时访问。 注意:请在header中指定合理的Content-Type字段小程序 下载,以保证客户端正确处理文件。
不清楚的请前往:小程序开发文档
/**
* 下载文件并预览
*/
downloadFile: function(e) {
console.log(e);
let type = e.currentTarget.dataset.type;
let url = e.currentTarget.dataset.url;
switch (type) {
case "pdf":
url += 'pdf';
break;
case "word":
url += 'docx';
break;
case "excel":
url += 'xlsx';
break;
default:
url += 'pptx';
break;
}
wx.downloadFile({
url: url,
header: {},
success: function(res) {
var filePath = res.tempFilePath;
console.log(filePath);
wx.openDocument({
filePath: filePath,
success: function(res) {
console.log('打开文档成功')
},
fail: function(res) {
console.log(res);
},
complete: function(res) {
console.log(res);
}
})
},
fail: function(res) {
console.log('文件下载失败');
},
complete: function(res) {},
})
}