这将是一个愚蠢的问题,但如果我有一个采用这种格式的 Mongo 对象:
{
"url": "google.com",
"statusCode": 301,
"headers": {
"location": "http://www.google.com/",
"content-type": "text/html; charset=UTF-8",
"date": "Fri, 22 Mar 2013 16:27:55 GMT",
"expires": "Sun, 21 Apr 2013 16:27:55 GMT",
"cache-control": "public, max-age=2592000",
"server": "gws",
"content-length": "219",
"x-xss-protection": "1; mode=block",
"x-frame-options": "SAMEORIGIN"
}
}
使用db.collections.find()
,如何找到server
键或嵌套在另一个键中的任何键?
我试过了db.collections.find({headers:{server:"gws"}})
我尝试以所有可能的组合引用它们,但输出始终为空白,或者...
任何建议,将不胜感激。