具有查询字符串的GET方法的Http请求

时间:2012-04-21 18:54:44

标签: node.js

我通过以下代码

通过 node.js 发出了一个http GET请求
http.get({host:'google.com'},
        function(res){});

但是如何让GET请求具有查询字符串, 例如:http://myhost/path?query1=“val1”& query2 =“val2” ???

1 个答案:

答案 0 :(得分:0)

您可以像这样添加路径:

var options = {
  host: 'myhost',
  port: 80,
  path: '/path?query1=val1&query2=val2'
};

http.get(options, function(res) {
  console.log("Got response: " + res.statusCode);
}).on('error', function(e) {
  console.log("Got error: " + e.message);
});