如何将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);
  });
};