我将NodeJS应用程序中的分块数据发送回浏览器。这些块实际上是json字符串。我遇到的问题是,每次调用onprogress
函数时,它都会添加完整数据的字符串。意味着响应块号为2,附加到响应块号1,依此类推。我想只获得“刚刚收到的”块。
以下是代码:
console.log("Start scan...");
var xhr = new XMLHttpRequest();
xhr.responseType = "text";
xhr.open("GET", "/servers/scan", true);
xhr.onprogress = function () {
console.log("PROGRESS:", xhr.responseText);
}
xhr.send();
实际上,当第三个响应出现时,xhr.responseText的内容也包含第一个和第二个响应的响应文本。我已经检查了服务器发送的内容,看起来不像是有问题。使用带有Express的Node,并使用res.send("...")
发送几次。标题也是这样设置的:
res.setHeader('Transfer-Encoding', 'chunked');
res.setHeader('X-Content-Type-Options', 'nosniff');
res.set('Content-Type', 'text/json');
答案 0 :(得分:4)
这种基于索引的方法对我有用:
var last_index = 0;
var xhr = new XMLHttpRequest();
xhr.open("GET", "/servers/scan");
xhr.onprogress = function () {
var curr_index = xhr.responseText.length;
if (last_index == curr_index) return;
var s = xhr.responseText.substring(last_index, curr_index);
last_index = curr_index;
console.log("PROGRESS:", s);
};
xhr.send();
受https://friendlybit.com/js/partial-xmlhttprequest-responses/启发