微信小程序下载预览PDF
微信小程序的文件预览需要先使用
wx.downloadFile
下载文件,然后使用下载文件的临时路径通过wx.openDocument
进行文件的预览项目中,有的需要打开pdf 来阅读信息。就需要用小程序自带的api方法。
wxml代码:
1 | <button bindtap= 'preview' >PDF文件预览</button> |
js代码:
//PDF预览 preview: function () { var that = this ; console.log( "PDF预览" ) //这里的value是先在data里面初始化,然后我根据用户切换单选框,获取的PDF文件的主键id console.log( this .data.value) var id = that.data.value; if (id == "" ) { wx.showModal({ title: '' , content: '请选择一份PDF' , showCancel: false , confirmColor: "#FFB100" }) } else { //先通过PDF的主键id,查询PDF路径(大家可以根据自己的需求来传数据) wx.request({ url: app.globalData.url + "/api/interview/queryFilePath" , data: { id: id }, method: 'POST' , header: { "content-type" : "application/x-www-form-urlencoded" }, success: function (res) { console.log(res.data) that.setData({ path: res.data.path, type: res.data.type }) //下载PDF wx.downloadFile({ url: app.globalData.url + that.data.path, success: function (res) { var filePath = res.tempFilePath console.log(filePath) //预览PDF wx.openDocument({ filePath: filePath, fileType: that.data.type, success: function (res) { console.log( "打开文档成功" ) console.log(res); }, fail: function (res) { console.log( "fail" ); console.log(res) }, complete: function (res) { console.log( "complete" ); console.log(res) } }) }, fail: function (res) { console.log( 'fail' ) console.log(res) }, complete: function (res) { console.log( 'complete' ) console.log(res) } }) } }) } }, |
如果您的问题还未解决可以联系站长付费协助。
有问题可以加入技术QQ群一起交流学习
本站vip会员 请加入无忧模板网 VIP群(50604020) PS:加入时备注用户名或昵称
普通注册会员或访客 请加入无忧模板网 技术交流群(50604130)
客服微信号:15898888535
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若内容侵犯了原著者的合法权益,可联系站长删除。