使用$ this-> Paginator->按不在相关模型中的字段排序

时间:2011-02-08 01:57:24

标签: sorting cakephp paginator

我想使用$ this-> Paginator->排序来生成链接,但按当前表中不属于该表的字段排序。我可以这样做吗?以及如何做到这一点?

非常感谢!

1 个答案:

答案 0 :(得分:0)

对于排序的外部字段,您可以这样做:

<th><?php echo $this->Paginator->sort('ExternalModelName', 'ExternalModelName.fieldname'); ?></th> 

但模型关系也必须正确。因此,假设您的关系设置正确,上述方法将有效。