0

我不知道如何根据选项数组动态创建表单。构建器将使用该数组来创建字段及其选项。例如,在我的选项数组 has 中{'name' => array{'type' => 'string', 'options' => {'required'}},表格将是

public function buildForm($builder){
    // I think options will be parse here....

    $builder->add('name', 'string', array('required'=>true));
}

有谁知道这样做的好方法?

4

1 回答 1

0

我不是表格专家,买你应该做一个表格工厂。阅读本文:http ://symfony.com/doc/current/cookbook/form/dynamic_form_modification.html应该会有所帮助

于 2013-07-12T03:49:33.203 回答