1

次のようにエクスプレスを使用してzipファイルを作成しようとしています。

const archiver = require('archiver');

app.get('/path/download', async (req, res) => {
    const arch = archiver('zip');
    arch.append('abc', { name: 'abc.txt'});
    arch.append('cdf', { name: 'cdf.txt'});
    arch.append('efg', { name: 'efg.txt'});
    res.set('Content-Type', 'application/zip');
    res.set('Content-Disposition', 'attachment; filename=test.zip');
    arch.pipe(res);
    arch.finalize();
});

ファイルがダウンロードされます。しかし、それを開こうとするとError 21、次のスクリーンショットに示すようになります。

ここに画像の説明を入力

4

0 に答える 0