Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个集合哦数据,每个文档都有一组评论,我需要进行分页和排序。我尝试过这样的事情,但不起作用:
$comments = $this->aggregate(array( array('$match' => array('_id' => new \MongoId($id))), array('$match' => array('comments' => array('$slice' => array($skip,$limit)))) ));