我在Node.js中有一个简单的http
客户端
http.request({host : "www.google.fr", path : "/"}, function(response) {
// http ok(200)
var str = '';
response.on('data', function (chunk) {
str += chunk;
});
response.on('end', function () {
// end here but html is incomplete sometimes
});
});
我也在检查req.on('error'..)
和超时。
在99.9%的情况下,每个人都可以。
但有时,服务器给我一个不完整的HTML。
套接字没问题,http响应代码是200。
它来自哪里,http服务器?