찾다

 >  Q&A  >  본문

Yii框架下MongoDB如何查询单个Collection下所有数据的单个字段?

网上查了很多资料,基本上是原生方法,或者是只能查询一条:

以上为例,是否可以查询该表中所有数据的"_id"字段?

某草草某草草2763일 전903

모든 응답(2)나는 대답할 것이다

  • 伊谢尔伦

    伊谢尔伦2017-04-26 09:05:33

    조건이 없을 경우 쿼리 필드를 지정하세요

    회신하다
    0
  • 阿神

    阿神2017-04-26 09:05:33

    $criteria = 새로운 EMongoCriteria();
    $criteria->sort('posts_count',EMongoCriteria::SORT_DESC)
    ->한도(25)
    ->오프셋(0);
    $test_id = 그룹::model()->findAll($criteria);
    $test_id->next();
    $_ids = 배열();
    $name_id = 배열();
    while($row = $test_id->current()){
    $t = $row->속성;
    $name_id[] = array_splice($t,0,2);
    $_ids[] = $name_id;
    $test_id->next();
    }
    $test_id = $_ids[count($_ids)-1];
    이것은 최후의 수단이지만 너무 어리석은 것 같습니다.

    회신하다
    0
  • 취소회신하다