用wx.openDocument打开文档, 参数fileType在开发工具里成了必填项?
发布于 6 年前 作者 fang85 5676 次浏览 来自 问答

https://developers.weixin.qq.com/miniprogram/dev/api/file/wx.openDocument.html

文档里写道,wx.openDocument时, fileType不是必填项。

我用文档里提供的这段示例代码:

wx.downloadFile({
  // 示例 url,并非真实存在
  url: 'http://example.com/somefile.pdf',
  success: function (res) {
    const filePath = res.tempFilePath
    wx.openDocument({
      filePath: filePath,
      success: function (res) {
        console.log('打开文档成功')
      }
    })
  }
})

测试了,在真机确实如此,可以正常打开文档。

但是在我的开发工具里无法运行,console里报错。

“openDocument:fail filetype not supported”

我加了fileType后才能在开发工具打开文档。

回到顶部