我有以下初学者问题: 我想在查询之外返回使用find函数检索的文档数。怎么办?
function citiesCounter (id) {
City.find({ country: id })
.then(cities_list => {
//console.log(id + ' : ' + cities_list.length);
return cities_list.length;
});
};
当时没有返回任何东西! (城市是一个有效的模型)
非常感谢