gpt4 book ai didi

sorting - Cakephp 3.x 对另一个模型的排序不起作用

转载 作者:行者123 更新时间:2023-12-03 07:14:47 27 4
gpt4 key购买 nike

我有两个模型用户和角色

这里“角色有许多用户”和“用户属于角色”

当用户保存时,我们还会询问用户的角色和记录是否已保存。

问题:我有包含名字、姓氏、角色列的用户列表。每个列都有排序,但在角色上排序不起作用。

角色表包含​​角色名称的“名称”字段。我已经提到了下面的链接,但它对我不起作用。 Pagination Sort in Cakephp 3.x

用户 Controller :

public function index() {
$this->paginate = [
'contain' => ['Roles'],
'conditions' => [
'Users.user_type <>' => 1
]
];

$this->set('users', $this->paginate($this->Users));
$this->set('_serialize', ['users']);
}

index.ctp

 <tr>
<th><?php echo $this->Paginator->sort('firstname',__('First Name')) ?></th>
<th><?php echo $this->Paginator->sort('lastname',__('Last Name')) ?></th>
<th><?php echo $this->Paginator->sort('email',__('Email Address')) ?></th>
<th><?php echo $this->Paginator->sort('Roles.name',__('Role Associated')) ?></th>
<th><?php echo $this->Paginator->sort('status',__('status')) ?></th>
<th class="actions"><?php echo __('action') ?></th>
</tr>

请告诉我您有任何解决方案。

最佳答案

你只需使用这个:

$this->paginate = [
'sortWhitelist'=>['Roles.name']
];

关于sorting - Cakephp 3.x 对另一个模型的排序不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29893881/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com