admin管理员组

文章数量:1342624

I have the following express node.js app. It's using the 'redis' npm package.

app.get("/test",function(req,res){
    var data = [];
    client.HGETALL("receipts",function(err,obj){
        for(var id in obj){
            data.push(JSON.parse(obj[id]));
        }
    });
    console.log(data);
    res.json(data);
});

app.listen(3000);

The code run's without errors; however, the data variable is [] when it's returned to the browser.

The strange part is that when I run the same redis mands from the mand line, the array is populated.

Can anyone tell me what's going on here?

I have the following express node.js app. It's using the 'redis' npm package.

app.get("/test",function(req,res){
    var data = [];
    client.HGETALL("receipts",function(err,obj){
        for(var id in obj){
            data.push(JSON.parse(obj[id]));
        }
    });
    console.log(data);
    res.json(data);
});

app.listen(3000);

The code run's without errors; however, the data variable is [] when it's returned to the browser.

The strange part is that when I run the same redis mands from the mand line, the array is populated.

Can anyone tell me what's going on here?

Share Improve this question asked Apr 4, 2012 at 22:44 Matt PhillipsMatt Phillips 11.5k11 gold badges48 silver badges71 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

Your code is asynchronous. The callback you pass doesn't get executed until after your console.log. Try:

app.get("/test",function(req,res){
    var data = [];
    client.HGETALL("receipts",function(err,obj){
        for(var id in obj){
            data.push(JSON.parse(obj[id]));
        }
        console.log(data);
        res.json(data);
    });
});

本文标签: javascriptnodejs express application won39t return json arrayStack Overflow