wx.downloadFile({
url: url,
success(res2) {
console.log(res2)
wx.openDocument({
filePath: res2.tempFilePath,
fileType: 'docx',
success() {
that.toast('文件打开成功')
},
fail(ee) {
console.log(ee)
that.toast("文件打开失败:" + ee.errMsg)
}
})
},
fail(e) {
that.toast("文件下载失败:" +url+ e.errMsg)
}
})
参考一下https://developers.weixin.qq.com/community/develop/doc/0006a6b6f2cf60404299d51ab56809?highline=wx.openDocument
小程序这边暂时只支持以pdf格式打开,所以word会转成pdf