我使用 JsZip 和 exceljs 包。ExcelJs 可以将 excel doc 写入 node.js 流,jszip 可以从流中读取文件并将其添加到存档中。我如何在它之间进行流传输以便于使用它?我提出了这个解决方案,但我认为它的拐杖不好......
const stream2 = new Writable();
stream2.result = [];
stream2._write = function (chunk, enc, next) {
this.result.push(chunk);
next();
};
const stream1 = new Readable();
stream1._read = function () {
stream1.push(stream2.result.shift() || null);
};
let promise = new Promise((resolve, reject) => {
excelDoc.write(stream2).then(() => {
zip.file('excelDoc.xlsx', stream1);
resolve(true);
});
});