我有以下格式的 mongodb 集合:
{
"_id" : ObjectId("5141916511e5b498fd2031c4"),
"itemid" : 1,
"recommendations" : [
{
"itemid" : 216,
"rating" : 0.875297364790784
},
{
"itemid" : 246,
"rating" : 0.8793363655122852
}
]
}
{
"_id" : ObjectId("5141916511e5b498fd2031c5"),
"itemid" : 2,
"recommendations" : [
{
"itemid" : 60,
"rating" : 0.9405825249353504
},
{
"itemid" : 76,
"rating" : 0.8822827294664317
}
]
}
我想检索给定 itemid 的推荐,然后对其进行迭代以打印所有推荐的 itemid 和评级。我为此使用 php。
当我尝试迭代返回的游标时,它会抛出“致命错误:在非对象上调用成员函数 hasNext()”错误。查询返回的结果集似乎不是游标类型。
下面是我正在使用的代码:
<?php
$mongodb = new Mongo("10.128.170.49:27017");
$database = $mongodb->ProductData;
$collection = $database->Recommendation1;
$cursor1 = $collection->findOne(array("itemid" => 1),array('recommendations'));
var_dump($cursor1);
echo "<hr/><p>iterating over a cursor</p>";
while ($cursor1->hasNext()): $document = $cursor1->getNext();
$itemid= $document['itemid'];
$probable_rating= $document['rating'];
echo ($itemid)."<br/>";
echo ($probable_rating)."<br/>";
echo "<hr/>";
endwhile;
?>
请帮我解决这个问题。