如果您使用了文档中的此部分
array(
'type' => 'select', // This is a <select> tag.
'label' => $this->l('Shipping method:'), // The <label> for this <select> tag.
'desc' => $this->l('Choose a shipping method'), // A help text, displayed right next to the <select> tag.
'name' => 'shipping_method', // The content of the 'id' attribute of the <select> tag.
'required' => true, // If set to true, this option must be set.
'options' => array(
'query' => $options, // $options contains the data itself.
'id' => 'id_option', // The value of the 'id' key must be the same as the key for 'value' attribute of the <option> tag in each $options sub-array.
'name' => 'name' // The value of the 'name' key must be the same as the key for the text content of the <option> tag in each $options sub-array.
)
),
那么您的$options数组中必须有相同的键。意思是你必须用这个
$timezoneList = timezones();
$options = array();
foreach ($timezoneList as $timezone)
{
$options[] = array(
"id_option" => $timezone['offset'],
"name" => '(UTC '.$timezone['offset'].') '.$timezone['name'].''
);
}
或将选定项的定义选项键从
id_option
到
id
'options' => array(
'query' => $options, // $options contains the data itself.
'id' => 'id', // The value of the 'id' key must be the same as the key for 'value' attribute of the <option> tag in each $options sub-array.
'name' => 'name' // The value of the 'name' key must be the same as the key for the text content of the <option> tag in each $options sub-array.
)
顺便说一下,这条评论还说
// The value of the 'id' key must be the same as the key for 'value' attribute of the <option> tag in each $options sub-array.