vue H5、uniapp小程序的文件下载

H5

获取到下载链接直接用window.open(url, “_self”)打开

uniapp 小程序

wx.downloadFile({
url:url,//下载文件在服务器上的地址
success: function(res){
console.log(res)
if (res.statusCode === 200) {
// 通过内置文档对象打开文档,便于另存为
wx.openDocument({
filePath: res.tempFilePath,
showMenu:true,//浏览页面右上角多了个更多按钮,里面有保存文件
fileType:‘docx,//必写
showMenu: true ,// 关键,这里开启预览页面的右上角菜单,才能另存为
})
}else{
console.log(res)
}
}
})
注意点:
1.小程序下载的文件是临时路径,需要通过打开的二次软件,进行存储

你可能感兴趣的:(vue,uniapp,vue.js,小程序,前端)