gpt4 book ai didi

node.js - 如何以express方式发送缓冲区数据?

转载 作者:太空宇宙 更新时间:2023-11-03 21:52:09 25 4
gpt4 key购买 nike

我正在尝试创建一个 Excel 文件并将其发送给客户。客户端应该通过ajax请求下载文件,因为我需要过滤器参数。

我正在使用 excel4node 包来创建 Excel 文件。

我编写了下面的代码,它现在可以工作,但我怀疑如果我的数据大于缓冲区会怎样。这是使用缓冲区的正确方法吗? (请使用 writeToBuffer 方法检查该行)

    const xl = require('excel4node');

const excelCreator = function (data) {...}

app.post('/api/excel', jsonParser, (req, res) => {

let reqObj = {
method: 'post',
url: apiUrl + '/MemberService';,
headers: {
'Content-Type': 'application/json'
},
data: req.body
};

axios(reqObj)
.then(response => {
res.body = responseHandler(response); // a helper function to set res object

let data = res.body.Data;

res.setHeader('Content-Disposition', 'attachment; filename=' + 'excel.xlsx');
res.type('application/octet-stream');
res.body.Data = null;

excelCreator(data).writeToBuffer().then(function (buffer) {
res.body.Data = buffer;
res.send(res.body);
});

})
.catch(...);
});

最佳答案

首先安装SheetJS js-xlsx

npm --save install xlsx

然后您可以通过 Express 发送此回复:

const xlsx = require('xlsx')

var wb = xlsx.utils.book_new();

var table = [['a', 'b', 'c'], ['1', '2', '3']]
var ws = xlsx.utils.aoa_to_sheet(table);
xlsx.utils.book_append_sheet(wb, ws, 'test');

// write options
const wopts = { bookType: 'xlsx', bookSST: false, type: 'base64' };
const buffer = xlsx.write(wb, wopts);

res.writeHead(200, [['Content-Type', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet']]);
res.end(new Buffer(buffer, 'base64'));

请随时查看文档 https://www.npmjs.com/package/xlsx

关于node.js - 如何以express方式发送缓冲区数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51063253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com