0

我有一个课堂收藏,其结构为

{
  "_id" : ObjectId("517a54a69de5ee980b000003"),
  "class_name" : "A",
  "students" : [{
    "sname" : "John",
    "age" : "13"
  }, {
    "sname" : "Marry",
    "age" : "12"
  }, {
    "sname" : "Gora",
    "age" : "12"
  }]
}

使用 php,我喜欢根据班级 _id 获取并列出所有学生。我们该怎么做?

更新我使用的查询:

$student_list=$collection->find(array(" rid"=>new MongoId($theObjId )), 
        array(
            "students" => 1,
        )
        );

我想把所有学生的名单打印出来。我无法通过使用 Foreach 循环来管理它。

4

2 回答 2

2

您需要做的就是调用findOne()而不是find()

$classroom = $collection->findOne(
  array( '_id' => new MongoId($theObjId )), 
  array( 'students' => 1 )
);

$classroom['students']; // will be an array of students

http://php.net/manual/en/mongocollection.findone.php

于 2013-04-26T11:57:05.233 回答
1

$student_list 是多行的 MongoCursor。您需要遍历它才能访问您要查找的行。像这样:

$cursor = $collection->find(array("_id"=>new MongoId($theObjId)), 
        array("students" => 1));

foreach($cursor as $row)
    foreach($row['students'] as $student)
         echo $student["sname"], $student["age"];

另外,考虑使用findOne。它更适合您的查询。

于 2013-04-26T12:13:55.870 回答