echo $form->input(
'country_id',
array(
'type' => 'select',
'label' => __('Country *', true),
'empty' => 'Select' ,
'order' => array('countries.name ASC')
)
);
Run Code Online (Sandbox Code Playgroud)
国家/地区列表未显示在升序中.请任何人帮我找出错误或以升序显示国家/地区列表的好方法.
您需要添加order到您的find查询:
$countries = $this->Country->find('list', array(
'fields' => array('Country.id', 'Country.name'),
'order' => array('Country.name' => 'ASC')
))
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5037 次 |
| 最近记录: |