使用node.js查询JSON API

时间:2011-06-02 10:52:20

标签: json api node.js

如何在node.js中最好地查询JSON API?是否有一个模块可以简化这个?

我正试图从http://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452

获取城市位置

我会使用jQuery在客户端查询API,因为它极大地简化了事情。 node.js有类似的内容吗?

1 个答案:

答案 0 :(得分:10)

The request module使http请求变得非常简单。只需向您的网址发送GET请求,然后JSON.parse()回复即可。您可能希望将encodeURIComponent()用于查询参数。