在Yii下降0?

时间:2014-07-17 10:53:51

标签: php yii

这是我的yii下拉:

$dataForCountryDropDown1=array(
                            'india'=>'india',
                            'us'=>'us',
                            );

echo $form->dropDownList($myAccountAddress,'countryName', 
array ($dataForCountryDropDown1),array('onchange'=>'hideStateDropDownForm(this)',
'prompt'=>'Select Country','class'=>"drop-select"));?>

enter image description here

我在下拉列表中收到0。这里有什么问题?

1 个答案:

答案 0 :(得分:1)

您正在将数组嵌套在另一个数组(array ($dataForCountryDropDown1))中。试试这个:

$dataForCountryDropDown1=array(
    'india'=>'india',
    'us'=>'us',
);

echo $form->dropDownList($myAccountAddress,'countryName', 
$dataForCountryDropDown1, array('onchange'=>'hideStateDropDownForm(this)',
'prompt'=>'Select Country','class'=>"drop-select"));?>