在 CakePHP 的 paginate() 之前在 Controller 中排序
Sorting in Controller before paginate() in CakePHP
所以我的 ItemsController 中有这个可爱的小索引函数:
public function index() {
$this->Item->recursive = 2;
$this->set('items', $this->paginate());
}
之所以这样,是因为我在 afterFind 上做了一堆计算(添加一个字段,并按它排序)
但我想在 Controller 级别上进行排序,以便我可以有一个 recent() 等。
如果我在 afterFind 级别排序,无论控制器是什么,它每次都会这样排序 - 所以这不好。
如何在控制器级别排序并仍然能够正确使用 $this->paginate()?
仅供参考,这是我的一些 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;
}
这就是使用分页器进行排序的方式
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 -->
或者,如果使用创建 REST API,请使用查询字符串:
http://myapp.dev/items/index?sort=score&direction=desc
我的工作方式是进入控制器:
/******************************************************************
*
******************************************************************/
function admin_index() {
$this->paginate = array(
'News' => array(
'order' => array(
'News.created' => 'DESC'
)
)
);
$data = $this->paginate('News');
$this->set('news', $data);
}
所以我的 ItemsController 中有这个可爱的小索引函数:
public function index() {
$this->Item->recursive = 2;
$this->set('items', $this->paginate());
}
之所以这样,是因为我在 afterFind 上做了一堆计算(添加一个字段,并按它排序)
但我想在 Controller 级别上进行排序,以便我可以有一个 recent() 等。 如果我在 afterFind 级别排序,无论控制器是什么,它每次都会这样排序 - 所以这不好。
如何在控制器级别排序并仍然能够正确使用 $this->paginate()?
仅供参考,这是我的一些 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;
}
这就是使用分页器进行排序的方式
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 -->
或者,如果使用创建 REST API,请使用查询字符串:
http://myapp.dev/items/index?sort=score&direction=desc
我的工作方式是进入控制器:
/******************************************************************
*
******************************************************************/
function admin_index() {
$this->paginate = array(
'News' => array(
'order' => array(
'News.created' => 'DESC'
)
)
);
$data = $this->paginate('News');
$this->set('news', $data);
}