传入的路径是'_doc/uniapp_save/16497546815220.zip',运行之后没反应,没报错,但是也不打印。。。
getRomoteZipFile(zipPath) {
return new Promise(function(resolve, reject) {
// step1 请求文件
JSZipUtils.getBinaryContent(zipPath, function(err, data) {
if (err) {
reject(err);
} else {
resolve(data);
}
});
})
.then(function(files) {
// step2 解压
return JSZip.loadAsync(files);
})
.then((files) => {
// console.log("files:", files);
// step3 将文件列表中想要的文件转成想要的格式
const fileName = Object.keys(files.files)[0]; // 测试就拿第一个文件
//arraybuffer表示文件为二进制,你想要什么文件类型就写什么,比如txt就写string等
return files.file(fileName).async("arraybuffer");
})
},
635168775
请问,plus.zip.decompress 中文.zip 无法解压,如何解?
2022-11-10 22:15