我正在尝试获取此值(db.collecName.distinct(' fieldName')。length)基本上是不同文档的计数,但是在ReactJS-Express-Mongoose API路径中。
应采用这种API调用格式:
router.get('/', function(req, res, next){
ModelName.find(function (err, CollecName){
if(err) return next(err);
res.json(CollecName);
});
});
提前致谢!
答案 0 :(得分:0)
感谢Jeremy T。,
router.get('/count', function(req, res, next){
ModelName.find().distinct('fieldName', function(err, Response) {
if (err) return next(err);
// console.log(Response.length);
res.json(Response.length);
});
});
〜解决方案