Cakephp 选择外键并按名称排序!
我可以从外键获取下拉列表,但如何按名称而不是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你是脚手架吗?如果没有,应该有一个类似于
控制器中的调用,只需将排序条件添加到查找调用中,例如
Are you scaffolding? If not should have a call similar to
in your controller simply add the sort condition to the find call e.g.