1

我想允许之前注册的候选人返回他的注册并添加(并且仅)丢失的文件。

这是我的看法

<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...

关于有什么问题的任何想法?谢谢

4

1 回答 1

2

在模板中过滤表单字段不是一个好主意。更好的是在构建表单时使用选项。这是一个关于如何做到这一点的例子,

1)设置条件以将字段添加到表单中,

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder->add('field_a', 'type');
    // ...
    if ($options['allow_edit_field_b']) {
        $builder->add('field_b', 'text', array(
            'property_path' => false,
        ));
    }
    // ...

2)定义你的选择,

 public function setDefaultOptions(OptionsResolverInterface $resolver) {
    $resolver->setDefaults(array(
        'allow_edit_field_b' => false,
        ));
 }

3)建立你的表格,

    $form = $this->createForm(new YourType(), $yourObject, array(
        'allow_edit_field_b' => true,
    ));
于 2012-12-07T21:09:08.967 回答