当前位置:   article > 正文

微信小程序wx.openDocument真机无法打开的问题解决方法_小程序 文件或文件夹不在白名单中,上传时会被忽略,在真机上可能无法读

小程序 文件或文件夹不在白名单中,上传时会被忽略,在真机上可能无法读

微信小程序wx.opendocument无法打开文件
大家看过微信小程序文档就知道他有一个文件类型叫做fileType 在文档中说的是 不是必填项 但是 你不填就会报错 简直有毒

但是 你填写 就只能打开那一种格式的文件

我下面来给 大家 带来一种解决方法 就是 将后台传给你的 文件的 后缀名 截取下来动态的放进去

wx.downloadFile({
      url: fileurl,
      success: function (res) {
        // console.log(res)
        var filePath = res.tempFilePath              //返回的文件临时地址,用于后面打开本地预览所用
        var filename = fileurl;
        var index1 = filename.lastIndexOf(".");
        var index2 = filename.length;
        var postf = filename.substring(index1, index2);//后缀名
        var postf1 = postf.replace(/\./g, '')
        // console.log(postf1)
        if (filePath != null) {
          wx.openDocument({
            filePath: filePath,
            fileType: postf1,
            success: function (res) {
              console.log(res)
            },
            fail: function (res) {
              console.log(res)
            }
          })
        }
      },
      fail: function (res) {
        console.log(res)
      }
    })
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

如果 在真机 上 还是 无法打开 请打开 你的 微信开发者平台

看一下 你的 uploadfile 和 downloadfile 的 合法 域名 填写 了没
不填写的 话 会导致 你的 文件 无法打开

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/188752
推荐阅读
相关标签
  

闽ICP备14008679号