如何从客户端javascript(而不是从Nodejs)发送分块的HTTP请求?

时间:2019-01-07 09:06:00

标签: javascript http

我找不到从客户端javascript(无论是浏览器还是React Native)启动和管理分块的请求的任何方法。

相反,Node.js提供了http模块,您可以使用该模块执行相同的任务,并逐渐write()请求正文。

我的问题:反正有从客户端javascript启动分块的HTTP请求吗?

注意:关于收到分段的回复的问题是。我想发送大块的请求

示例:

var http = new XMLHttpRequest();
var url = 'some_url';
var body = 'The whole body data';
http.open('POST', url, true);

// Whatever the content type
http.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');

// The whole data has to be ready and sent at once.
// How to stream the body? send it in chunks?
http.send(body);

1 个答案:

答案 0 :(得分:0)

我建议您通过以下链接,它可能会帮助您 https://gist.github.com/CMCDragonkai/6bfade6431e9ffb7fe88 enter link description here

希望这会清除您!