小程序解压函数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,
success: function (unzipRes) {
},
fail: function (unzipRes) {
}
})