微信小程序实现pdf预览思路

个人微信认证小程序,无法嵌入html网页。那这样子的话怎么实现微信小程序预览pdf呢?
请教大神

wx.downloadFile({

url: filePath,      //文件路径

header: {},

success: function (res) {

console.log(res)

var filePath = res.tempFilePath;

console.log(filePath);

wx.openDocument({

filePath: filePath,

fileType: type,   //文件类型

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) { },

})

作者:chengpiaoliang
来源:CSDN
原文:https://blog.csdn.net/yangchuangxyz/article/details/89448348
版权声明:本文为博主原创文章,转载请附上博文链接!

直接用h5加载PDF文件,支持预览功能