Cakephp中的升序中的下拉列表

use*_*076 1 cakephp

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

国家/地区列表未显示在升序中.请任何人帮我找出错误或以升序显示国家/地区列表的好方法.

nos*_*one 5

您需要添加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)