带有查询字符串参数的node.js http'get'请求


83

我现在有一个HTTP客户端的Node.js应用程序。所以我在做:

var query = require('querystring').stringify(propertiesObject);
http.get(url + query, function(res) {
   console.log("Got response: " + res.statusCode);
}).on('error', function(e) {
    console.log("Got error: " + e.message);
});

这似乎是完成此任务的一种好方法。但是,我有些沮丧,我必须执行此url + query步骤。这应该由一个公共库封装,但是我还没有看到它存在于节点的http库中,而且我不确定哪个标准的npm软件包可以完成它。有没有一种合理使用的更好的方法?

url.format方法节省了构建自己的URL的工作。但理想情况下,请求的级别也将高于此级别。



Answers:


158

检出请求模块。

它比node的内置http客户端功能更强大。

var request = require('request');

var propertiesObject = { field1:'test1', field2:'test2' };

request({url:url, qs:propertiesObject}, function(err, response, body) {
  if(err) { console.log(err); return; }
  console.log("Get response: " + response.statusCode);
});

典型的propertiesObject外观如何?我无法
使它

3
qs是查询字符串键。因此,您想在查询字符串中使用什么字段。{field1:'test1',field2:'test2'}
丹尼尔(Daniel)

有人知道如何仅使用Nodejs核心http模块来做到这一点吗?
亚历山大·米尔斯

1
@AlexanderMills看到了我的答案。不需要第三方库。
贾斯汀·迈纳斯

8
现在,请求模块已过时且已过时。
AmiNadimi

19

无需第三方库。使用nodejs url模块构建具有查询参数的URL:

const requestUrl = url.parse(url.format({
    protocol: 'https',
    hostname: 'yoursite.com',
    pathname: '/the/path',
    query: {
        key: value
    }
}));

然后使用格式化的网址发出请求。requestUrl.path将包含查询参数。

const req = https.get({
    hostname: requestUrl.hostname,
    path: requestUrl.path,
}, (res) => {
   // ...
})

我将尝试使用此解决方案,因为我想使用一些使用内置代码的现有代码https,但是OP要求使用更高级别的抽象和/或库来将URL字符串与查询组成,因此我认为可以接受答案个人更有效
Scott Anderson

2
@ScottAnderson如果我没有被接受的答案,我很好。只是想帮助人们完成他们需要做的事情。很高兴可以为您提供帮助。
贾斯汀·迈纳斯

6

如果您不想使用外部软件包,只需在实用程序中添加以下功能:

var params=function(req){
  let q=req.url.split('?'),result={};
  if(q.length>=2){
      q[1].split('&').forEach((item)=>{
           try {
             result[item.split('=')[0]]=item.split('=')[1];
           } catch (e) {
             result[item.split('=')[0]]='';
           }
      })
  }
  return result;
}

然后,在createServer回调中,将属性添加paramsrequest对象:

 http.createServer(function(req,res){
     req.params=params(req); // call the function above ;
      /**
       * http://mysite/add?name=Ahmed
       */
     console.log(req.params.name) ; // display : "Ahmed"

})

2
OP的问题涉及http客户端,而不是http服务器。该答案与解析http服务器中的查询字符串有关,而不是对http请求的查询字符串进行编码。
斯蒂芬·绍布(Steven Schaub)

这与问题的提出相反,而且最好使用Node的内置querystring模块,而不是尝试自己解析它。
peterflynn

6

我一直在努力如何向我的URL添加查询字符串参数。在意识到需要?在URL末尾添加之前,我无法使其工作,否则它将无法工作。相信我,这非常重要,因为它将节省您的调试时间,相信我:到那儿完成了

下面是一个简单的API端点,该端点调用Open Weather API并传递APPIDlatlon作为查询参数并作为JSON对象返回天气数据。希望这可以帮助。

//Load the request module
var request = require('request');

//Load the query String module
var querystring = require('querystring');

// Load OpenWeather Credentials
var OpenWeatherAppId = require('../config/third-party').openWeather;

router.post('/getCurrentWeather', function (req, res) {
    var urlOpenWeatherCurrent = 'http://api.openweathermap.org/data/2.5/weather?'
    var queryObject = {
        APPID: OpenWeatherAppId.appId,
        lat: req.body.lat,
        lon: req.body.lon
    }
    console.log(queryObject)
    request({
        url:urlOpenWeatherCurrent,
        qs: queryObject
    }, function (error, response, body) {
        if (error) {
            console.log('error:', error); // Print the error if one occurred

        } else if(response && body) {
            console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received
            res.json({'body': body}); // Print JSON response.
        }
    })
})  

或者,如果您想使用该querystring模块,请进行以下更改

var queryObject = querystring.stringify({
    APPID: OpenWeatherAppId.appId,
    lat: req.body.lat,
    lon: req.body.lon
});

request({
   url:urlOpenWeatherCurrent + queryObject
}, function (error, response, body) {...})

1

如果你需要发送GET请求到IP还有一个Domain(其他的答案并没有提到你可以指定一个port变量),你可以利用这个功能:

function getCode(host, port, path, queryString) {
    console.log("(" + host + ":" + port + path + ")" + "Running httpHelper.getCode()")

    // Construct url and query string
    const requestUrl = url.parse(url.format({
        protocol: 'http',
        hostname: host,
        pathname: path,
        port: port,
        query: queryString
    }));

    console.log("(" + host + path + ")" + "Sending GET request")
    // Send request
    console.log(url.format(requestUrl))
    http.get(url.format(requestUrl), (resp) => {
        let data = '';

        // A chunk of data has been received.
        resp.on('data', (chunk) => {
            console.log("GET chunk: " + chunk);
            data += chunk;
        });

        // The whole response has been received. Print out the result.
        resp.on('end', () => {
            console.log("GET end of response: " + data);
        });

    }).on("error", (err) => {
        console.log("GET Error: " + err);
    });
}

不要错过文件顶部所需的模块:

http = require("http");
url = require('url')

还请记住,您可以使用https模块通过安全网络进行通信。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.