Node.js http.client不完整的HTML

时间:2014-01-29 10:46:21

标签: node.js http

我在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服务器?

0 个答案:

没有答案