收藏
回答

wx.openDocument(Object object),ios打开报错,android没问题?

let that = this;

    let reqUrl = app.globalData.api + '/file/getOrderFile.do';  

    wx.downloadFile({

      url: reqUrl, 

      success (res) { 

        const filePath = res.tempFilePath;

        if (res.statusCode === 200{

          wx.saveFile({

            tempFilePath: res.tempFilePath,

            success (res) {

              console.log(res)

              const savedFilePath = res.savedFilePath 

              wx.openDocument({

                fileType: 'xlsx',

                showMenu:true,

                filePath: savedFilePath,

                success: function (res) {

                  console.log(res)

                }

              })

            }

          })

        }

       

      }

    })

在开发工具也能打开,只有ios报这个错误,我这个let reqUrl = app.globalData.api + '/file/getOrderFile.do';  是后端返回的一个文件流。求解答

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

1 个回答

登录 后发表内容
问题标签