用mongoose语句nodejs检查空表

时间:2016-06-13 15:10:28

标签: javascript node.js mongodb mongoose

我需要检查空表或现有的mongo表并编写这样的代码

if (table isn't empty) { /*code*/ }

我该怎么做?

 else if (table isn't empty) {
   Intake.find(function(err, intakes) {
     if (err)
       res.send(err);
     res.json(intakes);
   });
 }

0 个答案:

没有答案