Cakephp 选择外键并按名称排序!

发布于 2024-10-26 00:04:25 字数 142 浏览 1 评论 0原文

我可以从外键获取下拉列表,但如何按名称而不是 ID 对它们进行排序。

添加“订单”=>属于模型中的“Country.name asc”不起作用,或者我错过了一些东西!

例如,选择国家、州、城市以及要按名称(而不是 ID)排序的内容。

I can get drop downs from foreign keys but how to sort them by name instead of id.

Adding 'order' => 'Country.name asc' in belongsTo model doesn't work, or I'm missing something!!!

e.g. Choose country, state, city, and those to be sorted by name, instead of id.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

御守 2024-11-02 00:04:25

你是脚手架吗?如果没有,应该有一个类似于

$this->set('groups', $this->User->Group->find('list'));

控制器中的调用,只需将排序条件添加到查找调用中,例如

$this->set('groups', $this->User->Group->find('list',array('order'=>'Group.name desc')));

Are you scaffolding? If not should have a call similar to

$this->set('groups', $this->User->Group->find('list'));

in your controller simply add the sort condition to the find call e.g.

$this->set('groups', $this->User->Group->find('list',array('order'=>'Group.name desc')));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文