在 cakephp 3.x 中我不能在 find 中做分页顺序
In cakephp 3.x i can't do paginate order in a find
这是我的控制器:
//AgentsController.php
public function show()
{
$agents = $this->Agents->find()
$this->set('agents', $this->paginate($agents));
}
这里是我的部分观点
//show.ctp
<!-- ....... -->
<table class="table table-striped">
<thead>
<tr>
<th>
<?php echo $this->Paginator->sort('full_name', 'Nome', array('escape' => false)); ?>
</th>
<th>
<?php echo $this->Paginator->sort('username', 'Email', array('escape' => false)); ?>
</th>
<th>
<?php echo $this->Paginator->sort('regions', 'Regioni', array('escape' => false)); ?>
</th>
</tr>
</thead>
<!-- ....... -->
我错在哪里?
分页器将阻止任何按您正在使用的查询的主表中不存在的列进行排序的尝试.在这种情况下,您有 2 个选择.第一个选项是更改排序链接以告诉 cake 该列属于相关表:
The Paginator will block any attempt of sorting by a column that does not exist in the primary table of the query you are using. In this case you have 2 options. The first option is changing the sort links to tell cake that the column belongs to a related table:
<?php echo $this->Paginator->sort('Users.full_name', 'Nome'); ?>
或者您可以在组件中告诉它允许按给定的一组列进行排序:
Or you can tell it in the component that sorting by a given set of columns is allowed:
$this->paginate = ['sortWhitelist' => ['full_name', 'username']]
这篇关于Cakephp 3.x 中的分页排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
不能使用 'Object 作为类名,因为它是保留的Cannot use #39;Object as class name as it is reserved Cake 2.2.x(不能使用 Object 作为类名,因为它是保留的 Cake 2.2.x)
OAuth 重定向后会话丢失Session is lost after an OAuth redirect(OAuth 重定向后会话丢失)
CakePHP 多个应用程序的共享核心CakePHP Shared core for multiple apps(CakePHP 多个应用程序的共享核心)
在 CakePHP 3 上登录 [ Auth->identify() ] 始终为 falLogin [ Auth-gt;identify() ] always false on CakePHP 3(在 CakePHP 3 上登录 [ Auth-identify() ] 始终为 false)
致命错误:允许的内存大小为 134217728 字节已用尽Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 87 bytes)(致命错误:允许的内存大小为 134217728 字节已用尽
如何获取 Cakephp 的完整当前 urlHow to get complete current url for Cakephp(如何获取 Cakephp 的完整当前 url)