我正在使用 Zend Framework 2 Forms 使用数组概念进行选择(下拉框)。MenuForm.php 的代码片段如下:
$options_for_select = $menuTable->GetParents();
$this->add(array(
'type' => 'Zend\Form\Element\Select',
'name' => 'parent',
'attributes' => array(
'options' => $options_for_select,
),
'options' => array(
'label' => 'Select parent item',
),
)
);
当此下拉列表更改时,我想在表单上填充另一个下拉列表,其中包含与父下拉列表中选择的项目相关的选项列表。
我怎样才能做到这一点?
谢谢你。