gpt4 book ai didi

node.js - 在 Node.js 中发出 HTTP 请求并接收 multipart/x-mixed-replace 响应

转载 作者:行者123 更新时间:2023-12-01 04:45:05 26 4
gpt4 key购买 nike

我需要向外部服务器发出 HTTP GET 请求以开始接收事件。请求后我立即得到 multipart/x-mixed-replace回复。当一个事件发生时,它作为 XML 消息连同指示该部分结束的边界一起发送。

现在我必须在 Node.js 中实现它。对于正常请求,我使用 node-rest-client ,调用其get()方法并将我的逻辑放在方法的回调中。问题是回调仅在响应完成时执行,并且使用 multipart/x-mixed-replace直到连接关闭。

是否有其他 NPM 模块可以解决问题?我搜索了 NPM 注册表,但我发现的结果似乎不适合该任务。还是在纯Node中做更好?我是这样,请举个例子。

最佳答案

这是我自己的实现:

const webStream = {
get: function (url, callback) {
let webClient;

if (url.startsWith("http://")) {
webClient = require("http");
} else if (url.startsWith("https://")) {
webClient = require("https");
} else {
throw "Unsupported protocol.";
}

let clientRequest = webClient.get(url, function (response) {
let context = {
url: url,
boundary: "",
contentType: "",
contentLength: 0
};

let headersCompleted = false;
let bodyCompleted = false;
let buffer = null;
let receivedBodyChunk = 0;

response.on("data", function (chunk) {
if (!headersCompleted) {
let headers = chunk.toString().split(/\r?\n/);

context.boundary = headers[0].substring(2);
context.contentType = headers[1].split(":")[1].trim();
context.contentLength = parseInt(headers[2].split(":")[1]);

buffer = Buffer.alloc(context.contentLength);

headersCompleted = true;
} else {
if (!bodyCompleted) {
if (receivedBodyChunk < context.contentLength) {
chunk.copy(buffer, receivedBodyChunk, 0, chunk.byteLength);

receivedBodyChunk += chunk.byteLength;

if (receivedBodyChunk === context.contentLength) {
bodyCompleted = true;
}
}
}

if (bodyCompleted) {
callback(buffer, context);

headersCompleted = false;
bodyCompleted = false;
buffer = null;
receivedBodyChunk = 0;
}
}
});
});

return {
url: url,
handler: clientRequest,
on: function (type, listener) {
clientRequest.on(type, listener);
},
abort: function () {
clientRequest.abort();
}
};
}
};

let stream = webStream.get("http://127.0.0.1:8090/", function (data, context) {
// data: Received content (Buffer)
// context: { url, boundary, contentType, contentLength }

// TODO: Do something here...
});

// stream.abort();

// stream.on("error", function(e) {
// console.log("Error: " + e.message);
// });

关于node.js - 在 Node.js 中发出 HTTP 请求并接收 multipart/x-mixed-replace 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47331111/

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