我在Mongo中创建了一个“params”集合,其结构如下:
{
"_id" : "id1",
"list" : [
{
"type" : "type1",
"subtypes" : [ "id1 subtype11", "id1 subtype12" ]
}
{
"type" : "type2",
"subtypes" : [ "id1 subtype21", "id1 subtype22" ]
}
]
}
{
"_id" : "id2",
"list" : [
{
"type" : "type1",
"subtypes" : [ "id2 subtype11", "id2 subtype12" ]
}
{
"type" : "type2",
"subtypes" : [ "id2 subtype21", "id2 subtype22" ]
}
]
}
我想获得"subtypes"
和"_id":"id1"
的所有"type":"type1"
。我发现在Mongo shell中执行此操作的方法是
db.params.find (
{ $and: [
{"_id" : "id1"},
{"list.type" : "type1"}
] }
)
我有两个问题:
谢谢!
答案 0 :(得分:1)
事实证明,回答这个问题的PHP代码实际上并不困难:
$query = array('_id' => 'id1', 'list.type' => 'type1');
$result = $collection->find($query);
/* Use this to access each element of the results */
foreach($result as $doc) {
/* Code goes here */
}
如果想要使用"type"
中的每个值(例如打印所有值),代码将为:
$output = [];
$query = array('_id' => 'id1');
$field = array('list.type' => true);
$result = $collection->find($query, $field);
foreach($result as $doc) {
foreach($doc['list'] as $elem) {
$output[] = $elem['type'];
}
}
我通过在每个文档上使用var_dump()
函数并分析输出来发现所有这些。希望这有助于像我这样的初学者。感谢Sammaye的提示! :)
答案 1 :(得分:1)
$ collection-> find(array(),array('USERS.TASKS.MISSION_SAS_ID'=> true));
使用上面的代码获取子文档数据