我有一个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实例和本地。

最佳答案

解决方案: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();

07-27 23:32