Не удается вернуть zip-файл в ответе http от nodejs с express. Я использую Archiver JS и azure -функция- express. Я пытаюсь выяснить это уже целый день и не могу заставить его работать ..
Мой код:
const createHandler = require("azure-function-express").createHandler;
const express = require("express");
// Create express app as usual
const app = express();
app.get("/api/download", (req, res) => {
var Archiver = require('archiver');
// Tell the browser that this is a zip file.
res.writeHead(200, {
'Content-Type': 'application/zip',
'Content-disposition': 'attachment; filename=myFile.zip'
});
var zip = Archiver('zip');
// Send the file to the page output.
zip.pipe(res); // <--- GENERATES TypeError: Cannot read property 'length' of null
// Create zip with some files. Two dynamic, one static. Put #2 in a sub folder.
zip.append('Some text to go in file 1.', { name: '1.txt' })
.append('Some text to go in file 2. I go in a folder!', { name: 'somefolder/2.txt' })
.file('staticFiles/3.txt', { name: '3.txt' })
.finalize();
});
// Binds the express app to an Azure Function handler
module.exports = createHandler(app);
У меня нет опыта работы с трубами, но я думаю, это где он терпит неудачу ..
Это вызовет следующую ошибку, и я держу пари, что это связано с "zip.pipe (res)". Может кто-нибудь может объяснить, что я делаю не так?
[error] Worker 50fea52b-2a26-4eee-bf1a-5956a3bda16f uncaught exception (learn more: https://go.microsoft.com/fwlink/?linkid=2097909 ): TypeError: Cannot read property 'length' of null
at ServerResponse._send (_http_outgoing.js:231:33 undefined)
at write_ .write_ (_http_outgoing.js:625:15 undefined)
at ServerResponse.write (_http_outgoing.js:567:10 undefined)
at Archiver.ondata (C:\Users\KENUBBE\Desktop\smarthelmet-ml\node_modules\readable-stream\lib\_stream_readable.js:681:20 undefined)
at Archiver.emit (events.js:198:13 undefined)
at addChunk .addChunk (C:\Users\KENUBBE\Desktop\smarthelmet-ml\node_modules\readable-stream\lib\_stream_readable.js:298:12 undefined)
at readableAddChunk .readableAddChunk (C:\Users\KENUBBE\Desktop\smarthelmet-ml\node_modules\readable-stream\lib\_stream_readable.js:280:11 undefined)
at Archiver.Readable.push (C:\Users\KENUBBE\Desktop\smarthelmet-ml\node_modules\readable-stream\lib\_stream_readable.js:241:10 undefined)
at Archiver.Transform.push (C:\Users\KENUBBE\Desktop\smarthelmet-ml\node_modules\readable-stream\lib\_stream_transform.js:139:32 undefined)
at Archiver.afterTransform (C:\Users\KENUBBE\Desktop\smarthelmet-ml\node_modules\readable-stream\lib\_stream_transform.js:88:10 undefined)