标签: node.js mongodb mongoose
可以在mongoDB查询中搜索子元素吗?例如,
find({field.subfield:'value'}, function(err, doc){...});
或者做类似的事情......
谢谢。
答案 0 :(得分:4)
是的,有可能,但需要qoutes:
find({"field.subfield": "value"}, function(err,doc){...});
Querying documents with dot notation.