我有一个sails应用程序,我正在使用exceljs
来生成excel文件。看看他们的文件:
https://www.npmjs.com/package/exceljs#writing-xlsx
它们似乎允许写入流。
// write to a stream
workbook.xlsx.write(stream)
.then(function() {
// done
});
当用户期待回复时,我该怎么做?
我看了下面的内容:
http://sailsjs.org/documentation/concepts/custom-responses/adding-a-custom-response
http://sailsjs.org/documentation/concepts/custom-responses/default-responses
保存文件后我也尝试res.attachment()
但没有成功。有什么我想念的吗?
修改
以下答案几乎是正确的。我做了以下工作。以前的解决方案有时会损坏文件。
res.setHeader('Content-Type', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
res.setHeader("Content-Disposition", "attachment; filename=" + "Report.xlsx");
return workbook.xlsx.write(res)
.then(function() {
res.end();
});
这适用于我的EC2实例和本地。
答案 0 :(得分:1)
解决方案:https://github.com/guyonroche/exceljs/issues/37将工作簿写入响应。
var Excel = require('exceljs');
var workbook = new Excel.Workbook();
var sheet = workbook.addWorksheet("My Sheet");
res.setHeader('Content-Type', 'application/vnd.openxmlformats');
res.setHeader("Content-Disposition", "attachment; filename=" + "Report.xlsx");
workbook.xlsx.write(res);
res.end();