cakephp分页排序先下降

时间:2011-12-03 00:47:35

标签: php cakephp pagination

默认情况下,当您点击分页中的排序字段时,它会先按升序排序,有没有办法将其设置为先降序?

<th><?php echo $this->Paginator->sort('Views', 'views'); ?></th>

我希望我的用户在点击查看排序后首先查看最多查看。

1 个答案:

答案 0 :(得分:6)

要将默认排序方向设置为降序,请将上面的代码更改为:

<th><?php echo $this->Paginator->sort('Views', 'views, array('direction' => 'desc')); ?></th>

一旦激活,排序方向将像往常一样在降序和升序之间切换。