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 badges1 Answer
Reset to default 10Your 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
版权声明:本文标题:javascript - nodejs express application won't return json array - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743699278a2524036.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论