admin管理员组

文章数量:1340287

I need to call a function that makes an http request and have it return the value to me through callback. However, when I try I keep getting null response. Any help?

Here is my code:

var url = 'www.someurl'
makeCall(url, function(results){return results})

makeCall = function (url, results) {
          https.get(url,function (res) {
           res.on('data', function (d) {
                    resObj = JSON.parse(d);
                    results(resObj.value)

                });
            }).on('error', function (e) {
                     console.error(e);
                });
        }

I need to call a function that makes an http request and have it return the value to me through callback. However, when I try I keep getting null response. Any help?

Here is my code:

var url = 'www.someurl.'
makeCall(url, function(results){return results})

makeCall = function (url, results) {
          https.get(url,function (res) {
           res.on('data', function (d) {
                    resObj = JSON.parse(d);
                    results(resObj.value)

                });
            }).on('error', function (e) {
                     console.error(e);
                });
        }
Share Improve this question asked May 31, 2013 at 16:05 RobRob 11.5k10 gold badges40 silver badges56 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

You need to restructure your code to use a callback instead of returning a value. Here is a modified example that gets your external IP address:

var http = require('http');

var url = 'http://ip-api./json';

function makeCall (url, callback) {
    http.get(url,function (res) {
        res.on('data', function (d) {
            callback(JSON.parse(d));
        });
        res.on('error', function (e) {
            console.error(e);
        });
    });
}

function handleResults(results){
    //do something with the results
}

makeCall(url, function(results){
    console.log('results:',results);
    handleResults(results);        
});

本文标签: javascriptNodeJS function the returns http response valueStack Overflow