我有一个用formbuilder创建的选择框:
<select id="form_type" name="form[type]" class="form-control select2 select2-hidden-accessible" tabindex="-1" aria-hidden="true">
<option value="1">text</option>
<option value="2">hidden</option>
<option value="3">password</option>
<option value="4" selected="selected">icon</option>
<option value="5">select</option>
</select>
这是在我的控制器中创建的方式:
$formBuilder->add('type', EntityType::class, array(
'attr' => array('class' => 'form-control select2'), 'label' => 'Type',
'class' => FieldTypes::class,
'choice_label' => function ($fieldTypes) {
return $fieldTypes->getName();
}
));
$formBuilder->add('cancel', ButtonType::class, array('label' => 'cancel','attr' => array('class' => 'cancel form-btn btn btn-default pull-right close_sidebar')))
->add('save', SubmitType::class, array('label' => 'Save','attr' => array('id' => 'submit-my-beautiful-form','class' => 'form-btn btn btn-info pull-right','style' => 'margin-right:5px')));
$form = $formBuilder->getForm();
$form->handleRequest($request);
但是当我要保存选择时,会出现错误消息:
传递给App \ Entity \ Fields :: setType()的参数1必须是一个实例 App \ Entity \ FieldTypes或null,给定的字符串,在中调用 /Users/work/project/src/Controller/PagesController.php在第242行
在我的实体中:
public function setType(?FieldTypes $type): self
{
$this->type = $type;
return $this;
}
这是它的存储方式:
$entity = $this->getDoctrine()->getRepository($EntityName)->find($data['form[id]']);
$em = $this->getDoctrine()->getManager();
foreach ($fields as $field) {
$em = $this->getDoctrine()->getManager();
$func = 'set'.$field['fieldName'];
$args = $data['form['.$field['fieldName'].']'];
$entity->$func($args);
}
$em->flush();
答案 0 :(得分:2)
使用方法$form->handleRequest($request)
。它将使用其配置填充您的表单(它将使用发布的ID实例化FieldType
)。
在这里,您手动添加所选内容的“原始”值,该值是包含FieldType
ID的字符串。
编辑:请参见docs
答案 1 :(得分:0)
根据您的代码,很难理解,但是 如果$ field是字符串。
foreach ($fields as $field) {
$obj = $this->getDoctrine()->getRepository($fieldEntity)->find(field);
$entiy->setType($obj);
}
答案 2 :(得分:0)
尝试提交表单后阻止
Tag::C
$ form-> get('type')将作为FieldTypes类返回。
如果您使用$ field代替$ field ['fieldName'], 将对象返回。 例如
$entity->setType($form->get('type'));