const dataChunks: any = []; // Hold data chunks
let content: string | any = null; // Hold file string
req.on('data', (chunk) => {
// Concatenate each chunk of the message
dataChunks.push(chunk);
});
req.on('end', () => {
// Create content
content = Buffer.concat(dataChunks);
// Do further processing in here + return HTTP status
});
2条答案
按热度按时间c9x0cxw01#
将Get请求更改为Post请求,并使用原始正文解析器。
字符串
在那之后如果你请求并检查日志
型
的数据
jyztefdp2#
消息以多个块的形式发送。您需要使用req.on并连接它们。
在控制器中执行类似以下操作:
字符串
这段代码将循环遍历所有的块,并将它们连接起来,在“结束”时,完成获取文件输入并完成其余的处理。