我不知道如何根据选项数组动态创建表单。构建器将使用该数组来创建字段及其选项。例如,在我的选项数组 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));
}
有谁知道这样做的好方法?