gpt4 book ai didi

cakephp - Cakephp 中的升序下拉列表

转载 作者:行者123 更新时间:2023-12-02 17:46:03 28 4
gpt4 key购买 nike

echo $form->input(
'country_id',
array(
'type' => 'select',
'label' => __('Country *', true),
'empty' => 'Select' ,
'order' => array('countries.name ASC')
)
);

国家/地区列表未按升序显示。请任何人帮助我找出按升序显示国家/地区列表的错误或好方法。

最佳答案

您需要将 order 添加到您的 find 查询中:

$countries = $this->Country->find('list', array(
'fields' => array('Country.id', 'Country.name'),
'order' => array('Country.name' => 'ASC')
))

关于cakephp - Cakephp 中的升序下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14463023/

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