评论

downloadFile下载文件没有后缀名 如何解决

downloadFile下载文件没有后缀名 如何解决

wx.downloadFile({

      url: e.currentTarget.dataset.url,

      success: function (res) {

        const fileManager = wx.getFileSystemManager()

        const filePath = wx.env.USER_DATA_PATH + '/xxxx.xlsx'

        fileManager.saveFile({

          tempFilePath: res.tempFilePath,

          filePath,

          success: () => {

            wx.openDocument({

              filePath: filePath,

              showMenu: true,

              fileType: 'xlsx'

            })

            wx.hideLoading()

          }

        })

      }

    })

点赞 0
收藏
评论

1 个评论

  • 微盟
    微盟
    2022-01-21

    看是不是ios机型 ios下保存的图片是不带后缀的

    2022-01-21
    赞同
    回复 1
    • Promise
      Promise
      02-29
      为什么我用电脑小程序打开pdf文件不带后缀名??
      02-29
      回复
登录 后发表内容