Answer the question
In order to leave comments, you need to log in
How to make a file download using express?
Can't get the file to download. I make a selection from Mongo, convert to CSV and write the following code:
// data содержит строку в формате CSV
res.header('Content-Disposition', 'attachment; filename=export.csv');
res.header('Content-Type', 'text/csv; charset=utf-8');
res.header('Content-Length', data.length);
res.write(data);
res.end();
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question