收藏
回答

小程序解压函数FileSystemManager.unzip发布到服务器无响应?

在开发过程中调用getFileSystemManager.unzip,可以正常解压,发布到服务器就没有响应?

补充:体验版跟线上版本打开vconsole,是可以的,不打开vconsole没有反应。预览模式下是可以的

let that = this;
let filemgr = wx.getFileSystemManager();
let targetPath = wx.env.USER_DATA_PATH;
// filemgr fileName targetPath 都有值 调用unzip之后一直没有响应【苹果手机跟安卓手机都没有响应】
filemgr.unzip({
   zipFilePath`${targetPath}/${that.data.fileName}`,
   targetPath: targetPath,
   successfunction (unzipRes{
        
   },
   failfunction (unzipRes{
        
   }
})
最后一次编辑于  2020-08-17
回答关注问题邀请回答
收藏

1 个回答

  • Cjiang
    Cjiang
    2020-08-17

    你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

    2020-08-17
    有用
    回复 5
    • 龚红军
      龚红军
      2020-08-17
      微信版本号:7.0.17,
      2020-08-17
      回复
    • 龚红军
      龚红军
      2020-08-17
      let that = this;
      let filemgr = wx.getFileSystemManager();
      let targetPath = wx.env.USER_DATA_PATH;
      // filemgr fileName targetPath 都有值 调用unzip之后一直没有响应【苹果手机跟安卓手机都没有响应】
      filemgr.unzip({
         zipFilePath: `${targetPath}/${that.data.fileName}`,
         targetPath: targetPath,
         success: function (unzipRes) {
         },
         fail: function (unzipRes) {
         }
      })
      2020-08-17
      回复
    • 龚红军
      龚红军
      2020-08-17
      代码就是这样的
      2020-08-17
      回复
    • Cjiang
      Cjiang
      2020-08-17回复龚红军
      按上面的操作提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
      2020-08-17
      回复
    • 龚红军
      龚红军
      2020-08-18
      我换了解决方法,没有用微信unzip了,我用后台接口处理了!
      2020-08-18
      回复
登录 后发表内容
问题标签