Zend框架2种形式排列标记为下拉onchange事件(Zend Framework 2 Forms

2019-09-01 03:57发布

我使用Zend框架使用一个选择阵列概念(下拉框)2种形式。 从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',
            ),
        )
    );

当此下拉的变化,我想填充另一个下拉列表的形式与相关的父下拉列表中选择项目的选项列表。

我怎样才能做到这一点?

谢谢。

文章来源: Zend Framework 2 Forms Array notation for drop down onchange event