在 mongoDB 上搜索子字段

search a sub-field on mongoDB

是否可以在 mongoDB 查询中搜索子元素??例如,

find({field.subfield:'value'}, function(err, doc){...});

或者做类似的东西...

谢谢。

可以,但需要引述:

find({"field.subfield": "value"}, function(err,doc){...});

Querying documents with dot notation.