问题 I'm using the request module to make an HTTP GET request to an url in order to get a JSON response. However, my function is not returning the response's body. Can someone please help me with this? Here is my code: router.get('/:id', function(req, res) { var body= getJson(req.params.id); res.send(body); }); Here is my getJson function: function getJson(myid){ // Set the headers var headers = { 'User-Agent': 'Super Agent/0.0.1', 'Content-Type': 'application/x-www-form-urlencoded' } // Configure