我想允许之前注册的候选人返回他的注册并添加(并且仅)丢失的文件。
这是我的看法
<form action="{{ path('candidat_update', { 'id': entity.id }) }}" method="post" {{ form_enctype(edit_form) }}>
{% if ((entity.file2)==0)%}
{{ form_row(edit_form.file2, { 'label': 'file2' }) }}
{% endif %}
<p>
<button class="btn-small" type="submit">update</button>
</p>
</form>
单击按钮更新时,什么也没有发生(没有重定向到显示视图,没有上传)
我的控制器的 updateAction :
public function updateAction(Request $request, $id)
{
$em = $this->getDoctrine()->getManager();
$entity = $em->getRepository('EtienneInscriptionBundle:Candidat')->find($id);
if (!$entity) {
throw $this->createNotFoundException('Unable to find Candidat entity.');
}
$deleteForm = $this->createDeleteForm($id);
$editForm = $this->createForm(new CandidatType(), $entity);
$editForm->bind($request);
if ($editForm->isValid()) {
$em->persist($entity);
$em->flush();
return $this->redirect($this->generateUrl('candidat_show', array('id' => $entity->getId())));
#return $this->redirect($this->generateUrl('candidat_edit', array('id' => $id)));
}
return array(
'entity' => $entity,
'edit_form' => $editForm->createView(),
'delete_form' => $deleteForm->createView(),
);
}
CandidateType 包含在创建操作(基于 CRUD 的控制器)中最初生成每个字段的构建器
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name') ....etc...
关于有什么问题的任何想法?谢谢