Symfony2创建一个表单类型以添加​​相同类型的多个记录

时间:2016-04-01 03:16:05

标签: php forms symfony-forms symfony

我需要创建一个表单类型,它将创建某个实体的多个记录。

我想出了创建一个父Form Form,然后在里面添加一个集合。此父类型不绑定到任何实体,但子类型为。问题是,当我处理请求时,我得到一个空的数据对象。

这是我的父类型:

class ChallengeCollectionType extends AbstractType {

    /**
     * {@inheritdoc}
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('email_invitations', CollectionType::class, [
            'entry_type' => EmailInvitationType::class
        ]);
    }

    /**
     * {@inheritdoc}
     */
    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults(array(
            'csrf_protection'   => false
        ));
    }

}

我的孩子类型:

class EmailInvitationType extends AbstractType {

    /**
     * {@inheritdoc}
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('email', EmailType::class);
    }

    /**
     * {@inheritdoc}
     */
    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults(array(
            'data_class'        => Challenge::class,
            'csrf_protection'   => false
        ));
    }

}

以下是我在Controller中处理数据的方法:

public function inviteEmailAction(Request $request){

        $form = $this->createForm(ChallengeCollectionType::class);

        $form->handleRequest($request);

        dump($form->getData());
        dump($form->get('email_invitations')->getData());
        die();
}

我在POST请求中提交数据(这是API,而且没有HTML表单),如下所示:

challenge_collection[email_invitations][0][email] = "email@address.com"
challenge_collection[email_invitations][1][email] = "address@email.com"

Controller为所有转储返回空[。]。

我实际上找到了一种解决方法,但看起来很糟糕:

        $data = ['email_invitations' => [new Challenge(), new Challenge()]];        

        $form = $this->createForm(ChallengeCollectionType::class, $data);

        $form->handleRequest($request);

这样就行了,所以我必须发送一个实体类型的空对象数组来处理请求。

甚至这样:

    $data = ['email_invitations' => []];

    if(!empty($request->request->get('challenge_collection'))){
        if(!empty($request->request->get('challenge_collection')['email_invitations'])){
            for($i = 0; $i < count($request->request->get('challenge_collection')['email_invitations']); $i ++){
                $data['email_invitations'][] = new Challenge();
            }
        }
    }

应该有更好的方法,请帮我找到它。

2 个答案:

答案 0 :(得分:1)

您应该尝试在集合字段类型中使用allow_addallow_delete选项。 See the Collection field type documentation

此外,这对于父实体与子实体具有mapped-by关联非常重要,这将使您在控制器中的ArrayCollection对象中获得子对象。

此外,如果您想根据请求自动保存/删除它们,则需要实现'by_reference false and set association with cascade-persist and cascade-remove`。

我已经多次使用collection字段类型和API,它就像魅力一样。如果您需要进一步解释,请告诉我。

答案 1 :(得分:0)

也许你应该在控制器中尝试类似:

$invitations = $this->getDoctrine()->getRepository('yourInvitationEntityClass')->findAll());         
$form = $this->createForm(ChallengeCollectionType::class, $invitations );

你可以在这里找到解释:

http://symfony.com/doc/current/cookbook/form/form_collections.html

One form with all row of one entity