收藏
回答

打开xslx报错OfficeImportErrorDomain错误912,需如何解决?

downloadExecl().then(res=>{
          const URL = res.data[0];
          wx.downloadFile({
            header:{
              'Content-Type':"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=GBK",
            },
            url: URL,
            success (ress) {
              if (ress.statusCode == 200) {
                const filePath = ress.tempFilePath;
                wx.hideLoading()
                wx.openDocument({
                  filePath: filePath,
                  fileType: 'xlsx,xls,doc,docx',
                  showMenu: true,
                  success: function (response) {
                    console.log(response, '打开文档成功');
                  }
                });
              }
            },
            fail(error) {
              this.$util.Tips({title: '下载失败'})
            }
          })
        })
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容