当前位置:   article > 正文

[微信小程序]在线预览文件wx.downloadFile和wx.openDocument文件名是一串乱的字符串,怎么修改文件名_wx.downloadfile 文件名

wx.downloadfile 文件名

[微信小程序]在线预览文件wx.downloadFile和wx.openDocument文件名是一串乱的字符串,怎么修改文件名

问题

在这里插入图片描述

 wx.downloadFile({
    url: config.apiUrl, //文件本身url
     success (res) {
       if (res.statusCode === 200) {
         wx.openDocument({
           filePath: res.tempFilePath,
           showMenu: true
         })
       }
     }
   })
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

修改后

在这里插入图片描述

wx.downloadFile({
   url: config.apiUrl,//文件本身url
    filePath: wx.env.USER_DATA_PATH + '/' + '考察文件.pdf', // 需要预览文件的名称
    success (res) {
      if (res.statusCode === 200) {
        const filePath= res.filePath; // 微信临时文件路径
        wx.openDocument({
          filePath: filePath,  //自定义的文件临时路径
          showMenu: true
        })
      }
    }
  })
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/264171
推荐阅读
  

闽ICP备14008679号