我正在使用alex bilbie库为mongo db(https://github.com/alexbilbie/codeigniter-mongodb-library/tree/v2)。我不知道如何用这个lib形成elemMatch查询。
我需要将其转换为alexs lib。
db.centers.find(
{
'_id': ObjectId('516d3ae30074d35600000001')
},
{
'locations' : {
'$elemMatch' : { "id" : ObjectId("51b595eabe55b59630000000") }
}
}
)
答案 0 :(得分:1)
解决方案是:
$m = new Mongo();
$collection = $m->selectDB('production')->selectCollection("centers");
$array = array('_id' => new MongoId('516d3ae30074d35600000001'));
$project = array(
'locations' => array(
'$elemMatch' => array('id' => new MongoId('51b595eabe55b59630000000'))
)
);
$cursor = $collection->find($array, $project);
foreach ($cursor as $doc) {
print_r($doc);
}
正如Alex lib所说:你需要将$ project数组放在select方法中而不是
答案 1 :(得分:0)
基于他的回购文件,这不适合你:
$this->mongo_db
->where(array(
'_id' => ObjectId('516d3ae30074d35600000001'),
'locations' => array( '$elemMatch' => array( "id" : ObjectId("51b595eabe55b59630000000") ) )
))
->get('centers');
编辑:我最初根据您问题中的查询复制了此内容。您确定id
中的 $elemMatch
属性不应 _id
吗?