标签: 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); }); }