1

我正在使用 node.js 的 http 模块来发出请求。我在数据库中有一堆网址。我正在从数据库中获取这些 url 并在循环中发出请求。但是当响应到来时,我想获取该响应的主机名,因为我想根据该响应更新数据库中的某些内容。但是我没有得到哪个站点的响应,因此我无法更新该站点的记录。

代码是这样的:

for (site = 0; site < no_of_sites; site++) {
    options = {
        hostname: sites[site].name,
        port: 80,
        method: 'GET',
        headers: {
            'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; rv:11.0) Gecko/20100101 Firefox/11.0'
        }
    };

    var req = http.request(options, function (res) {
        console.log('HEADERS: ' + JSON.stringify(res.headers));
        if (res.statusCode == 200) {

            //Update record;
        }
    });
}
4

3 回答 3

2

选项一:使用res.req

var req = http.request(options, function (res) {
  console.log(res.req._headers.host)
});

选项二:使用闭包

for (site = 0; site < no_of_sites; site++) {
    (function(){
        var options = {
            // ...
        };

        var req = http.request(options, function (res) {
            // options available here
            console.log(options);
        });
    }());
}

选项三

它似乎与回调中this的相同,但我并不完全确定。res.reqhttp.request()

于 2013-09-25T11:31:53.053 回答
2

我们可以在this对象中获取主机站点。

console.log(this._header.match(/Host\:(.*)/g));
于 2013-09-25T14:02:32.240 回答
1

答案是 console.log(res.socket._httpMessage._headers.host);

于 2015-03-30T19:06:15.267 回答