微信小程序打开pdf/word/excel等失败

官方实例:

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('打开文档成功')
      }
    })
  }
})

实际拷贝代码到开发者工具,工具也打不开,真机也打不开
解决办法:
配置fileType

你可能感兴趣的:(微信小程序)