如何解决如何将db.db.collection返回的内容放入res.json中?
在控制器中,它搜索countries
集合中的所有国家。在db.db.collection ....
中,我有console.log (countries)
。之所以有效,是因为航站楼将我带回了所有国家。但是res.json (countries)
不起作用。在客户端,它返回给我data: ''
。如何将return countries
返回的内容放在res.json()
中?
//控制器/国家/地区
module.exports.read = (req,res) => {
const countries = db.db.collection('countries').findOne({},function (findErr,countries) {
if (findErr) throw findErr;
console.log(countries); //it works,in terminal return me all countries
return countries;
});
res.json(countries);
};
解决方法
这是在异步函数完成之前调用return的典型情况。许多人都错了。您需要在db find的回调中调用“返回”回调:
module.exports.read = (req,res) => {
db.db.collection('countries').findOne({},function (findErr,countries) {
if (findErr) throw findErr;
console.log(countries); //it works,in terminal return me all countries
res.json(countries);
});
};
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。