wx.openDocument(Object object)

新开页面打开文档

参数

Object object

属性类型默认值必填说明最低版本
filePathstring文件路径 (本地路径) ,可通过 downloadFile 获得
fileTypestring文件类型,指定文件类型打开文件1.4.0
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

object.fileType 的合法值

说明最低版本
docdoc 格式
docxdocx 格式
xlsxls 格式
xlsxxlsx 格式
pptppt 格式
pptxpptx 格式
pdfpdf 格式

示例代码

  1. wx.downloadFile({
  2. // 示例 url,并非真实存在
  3. url: 'http://example.com/somefile.pdf',
  4. success: function (res) {
  5. const filePath = res.tempFilePath
  6. wx.openDocument({
  7. filePath: filePath,
  8. success: function (res) {
  9. console.log('打开文档成功')
  10. }
  11. })
  12. }
  13. })