##$exists简述
$exists操作符,可用于判断某些关键字段是否存在来进行条件查询。如下示例:
Model.find({name: {$exists: true}},function(error,docs){ //查询所有存在name属性的文档 }); Model.find({telephone: {$exists: false}},function(error,docs){ //查询所有不存在telephone属性的文档 });
参考示例,试一试使用$exists操作符来判定存在属性email的所有文档并console输出。
TestModel.find({email: {$exists: true}},function(error,docs){ console.log(docs); });