mongoose查询表中的数据,如何才能保存?
function searchData(){
NodeInfo.find({}, function(err, res){
if(err) {
console.log("Error:" + err);
}
console.log(JSON.stringify(res,null,2)); //1处
return res;
})
}
let a = searchData();
console.log(a); //2处
为何打印1处能显示出完整的数据,打印2处却提示undefined,要如何才能将查找到的数据保存到数组中?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为查询需要耗时,所以
find
是异步方法,第二个会console.log先执行,执行的时候查询还没有完成,而且searchData
本身没有返回值,所以a为undefinded
,查询完成后才会执行find
的callback,才会执行第一个console.log,所以第一个console.log可以打印出结果mongoose应该是支持promise的,所以可以这么写: