我通过以下代码
通过 node.js 发出了一个http GET请求http.get({host:'google.com'},
function(res){});
但是如何让GET请求具有查询字符串, 例如:http://myhost/path?query1=“val1”& query2 =“val2” ???
答案 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);
});