使用 wx.openDocument(obj) 方法预览
wx.downloadFile({
url: 'http://example.com/somefile.pdf',
success: function (res) {
var filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功')
}
})
}
})
打开预览文件乱码解决方法:
在后台设置contenttype;(文件类型)
这样就可以在小程序预览了