代码语言:javascript复制
<button bindtap="download">下载</button>
代码语言:javascript复制 download:function(){
wx.showLoading({
title: '正在下载...',
})
wx.downloadFile({
url: 'http://192.168.0.143:8080/mock/2021年公司春节放假调休通知.pdf',
filePath: wx.env.USER_DATA_PATH '/2021年公司春节放假调休通知.pdf',
success: function(res) {
wx.openDocument({
filePath: res.filePath,
success: function (res) {
wx.hideLoading()
console.log('打开文档成功')
}
})
},fail: function(res){
console.log(res)
}
})
},
如果是用uniapp
代码语言:javascript复制uni.downloadFile({
url: xxx.pdf',
success: function (res) {
var filePath = res.tempFilePath;
uni.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功');
}
});
}
});