收藏
回答

通过downloadFile下载后,使用openDocument ios打不开文件,为什么?

苹果版本 iphone 6

代码片段:https://developers.weixin.qq.com/s/jqVgWamT7Zi5

回答关注问题邀请回答
收藏

1 个回答

  • 微盟
    微盟
    2020-06-17

    在openDocument方法中加入fileType即可

    wx.downloadFile({
          url: `https://a.ittim.ltd:8447/1569296059911-4890.doc`,
          success(res) {
            const filePath = res.tempFilePath;
            wx.openDocument({
              filePath,
              fileType:"docx",
              success() {
                console.log('打开成功'); 
              }
            })
          }
        })
    
    2020-06-17
    有用
    回复
登录 后发表内容
问题标签