在开发过程中调用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,
success: function (unzipRes) {
},
fail: function (unzipRes) {
}
})
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
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) {
}
})