在CakePHP中的paginate()之前在Controller中排序

时间:2015-03-02 16:41:33

标签: php sorting cakephp pagination

所以我在ItemsController中有这个可爱的小索引函数:

public function index() {
        $this->Item->recursive = 2;
        $this->set('items', $this->paginate());
    }

它是这样的,因为我在afterFind上做了一堆计算(添加一个字段,然后按它排序)

但我想对Controller级别进行排序,以便我可以使用recent()等。 如果我对afterFind级别进行排序,那么无论控制器是什么,它都会像这样排序 - 这样做并不好。

如何在控制器级别上排序并仍能正确使用$ this-> paginate()?

FYI这是我的AfterFind中的一些内容:

public function afterFind($results, $primary = false){
    parent::afterFind($results, $primary);
    foreach ($results as $key => $val) {
        // my foreach logic calculating Item.score  
    }
// the stuff I should be doing on a controller-to-controller basis:
    $results = Set::sort($results, '{n}.Item.score', 'desc'); 
    return $results;
}

2 个答案:

答案 0 :(得分:4)

这是您使用Paginator进行排序的方法

public function index() {
  $this->paginate = array(
    'limit' => 10,
    'order' => array( // sets a default order to sort by
      'Item.name' => 'asc'
    )
  );
  $items = $this->paginate('Item');
  $this->set(compact('items'));
}

在您看来:



<div class="sort-buttons">
  Sort by
  <?php echo $this->Paginator->sort('name', 'By Name', array('class' => 'button')); ?>
  <?php echo $this->Paginator->sort('score', 'By Score', array('class' => 'button')); ?>
  <?php echo $this->Paginator->sort('date', 'By Date', array('class' => 'button')); ?>
</div><!-- /.sort-buttons -->
&#13;
&#13;
&#13;

或者,如果用于创建REST API,请使用查询字符串:

http://myapp.dev/items/index?sort=score&direction=desc

答案 1 :(得分:1)

我的工作方式是进入控制器:

/******************************************************************
 * 
 ******************************************************************/
function admin_index() {
    $this->paginate = array(
        'News' => array(
            'order' => array(
                'News.created' =>  'DESC'
            )
        )
    );
    $data = $this->paginate('News');
    $this->set('news', $data);
}