2018 MongoDB与NodeJS Express Mongoose API不同

时间:2018-01-19 07:42:25

标签: node.js mongodb api express mongoose

我正在尝试获取此值(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);
    });
});

提前致谢!

1 个答案:

答案 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);
    });
});

〜解决方案