Symfony3:填充了对象数组的选择类型字段

时间:2016-05-03 14:16:18

标签: symfony object entity choice choicefield

我有一个实体Product。我的产品可以有多个不同语言的名称。法语名称,英语名称等。我不想使用自动翻译。

用户必须在“产品”表单中写下名称并选择相应的语言。由于添加按钮,他可以根据需要添加许多名称。

所有语言都是由管理员用户创建的(另一种形式)。因此,Language也是一个具有名称(例如:英语)和代码(例如:EN)的实体。

我创建了实体ProductName,它有一个名称和一种语言(符合用户在产品表单中写的内容)。

在这种情况下,我无需将实体ProductName与实体Language相关联。我只想要语言代码。所以,在我的ProductName实体中,我有这个属性:

/**
 * @ORM\Column(name="Language_Code", type="string", length=2)
 */
private $language;

我的产品表单(ProductType)有一个CollectionType字段,以便添加多个名称。

// Form/ProductType.php

    ->add('infos',      CollectionType::class, array(
        'entry_type'    => ProductInfosType::class,
        'allow_add'     => true,
        'allow_delete'  => true,
        'prototype'     => true,
        'label'         => false,
        'mapped'        => false
    ))

ProductInfosType表单有2个字段:

// Form/ProductInfosType.php

        ->add('name',           TextType::class, array(
            'attr'              => array('size' => 40)
        ))
        ->add('language',       EntityType::class, array(
            'placeholder'       => '',
            'class'             => 'AppBundle:Language',
            'choice_label'      => 'code',
            'attr'              => array('class' => 'lang'),
            'query_builder'     => function (EntityRepository $er) {
                return $er->createQueryBuilder('l')->orderBy('l.code', 'ASC');
            }
        ))

因此,当我进入表单页面时,我有一个包含输入文本字段(Name)和一个select字段(语言)的块。选择字段如下:

<select id="product_infos_0_language" required="required" name="product[infos][0][language]">
    <option value=""></option>
    <option value="DE">DE</option>
    <option value="EN">EN</option>
    <option value="ES">ES</option>
    <option selected="selected" value="FR">FR</option>
</select> 

此时,一切正常。我创建了一个添加按钮,以便用户可以添加其他名称......

但是,当我提交表单时,当我在ProductController中检查表单数据时,我注意到它与我想要存储在数据库中的内容不对应。

print_r($form->get('infos')->getData());

// returns :
Array
(
    [0] => AppBundle\Entity\ProductName Object
        ( 
            [language:AppBundle\Entity\ProductName:private] => AppBundle\Entity\Language Object
                (
                    [code:AppBundle\Entity\Language:private] => FR
                    [name:AppBundle\Entity\Language:private] => Français
                )

            [name:AppBundle\Entity\ProductName:private] => Ceinture lombaire LombaSkin
        )
)

我想要的是:

Array
(
    [0] => AppBundle\Entity\ProductName Object
        ( 
            [language:AppBundle\Entity\ProductName:private] => FR    
            [name:AppBundle\Entity\ProductName:private] => Ceinture lombaire LombaSkin
        )
)

我不想要语言对象,但直接使用语言代码

这就是为什么我认为我不应该使用ProductNameType形式的EntityField而是ChoiceType字段。

如何在选择字段中加载存储在db中的所有语言? 我希望这种解释更容易理解; - )

2 个答案:

答案 0 :(得分:7)

由于这篇文章我找到了解决方案:Passing data to buildForm() in Symfony 2.8/3.0

ProductController.php :在createForm()方法中将自定义数据作为选项传递。

// ...

// build the form
$em = $this->getDoctrine()->getManager();
$product = new Product();
$languages = $em->getRepository('AppBundle:Language')->findAllOrderedByCode();

$form = $this->createForm(ProductType::class, $product, array(
    'languages' => $languages
));

ProductType表格:在选项解析程序中传递自定义数据

public function configureOptions(OptionsResolver $resolver) {
    $resolver->setDefaults(array(
        'data_class' => 'AppBundle\Entity\Product',
        'languages'  => null
    ));
}

然后,在buildForm()函数中,在CollectionType字段中添加entry_options选项:

$builder->add('infos',  CollectionType::class, array(
    'entry_type'    => ProductInfosType::class,
    'entry_options' => array('languages' => $options['languages']),
    'allow_add'     => true,
    'allow_delete'  => true,
    'prototype'     => true,
    'label'         => false,
    'by_reference'  => false
));

ProductInfosType表格:在选项解析器中传递自定义数据(与ProductForm完全相同)

public function configureOptions(OptionsResolver $resolver) {
    $resolver->setDefaults(array(
        'data_class' => 'AppBundle\Entity\ProductName',
        'languages'  => null
    ));
}

现在,您有两种选择:要么您希望表单返回实体或简单字符串。

在我的例子中,我只想要语言代码(如FR,EN等)。

案例1:在发布表单时仅返回语言代码:

// Form/ProductInfosType.php

// ...

// Convert array of objects in an array of strings
$choices = array();
foreach ($options['languages'] as $lang) {
    $code = $lang->getCode();
    $choices[$code] = $code;
}

$builder->add('language', ChoiceType::class, array(
    'placeholder'       => '',
    'choices'           => $choices
));

// returns :
Array
(
    [0] => AppBundle\Entity\ProductName Object
        ( 
            [name:AppBundle\Entity\ProductName:private] => Ceinture lombaire LombaSkin
            [language:AppBundle\Entity\ProductName:private] => FR    
        )
)

案例2:发布表单时返回语言实体:

// Form/ProductInfosType.php

// ...

$builder->add('language', ChoiceType::class, array(
    'placeholder'       => '',
    'choices'           => $options['languages'],
    'choice_label'      => 'code',
    'choice_value'      => 'code'
));

// returns :
Array
(
    [0] => AppBundle\Entity\ProductName Object
        ( 
            [name:AppBundle\Entity\ProductName:private] => Ceinture lombaire LombaSkin
            [language:AppBundle\Entity\ProductName:private] => AppBundle\Entity\Language Object
                (
                    [code:AppBundle\Entity\Language:private] => FR
                    [name:AppBundle\Entity\Language:private] => Français
                )    
        )
)

使用此解决方案,我们不需要将表单创建为服务,以便将实体管理器作为参数传递。所有都在控制器和表单选项中进行管理。

答案 1 :(得分:1)

你应该使用choice_value的EntityType。

'choice_value' => function ($language) {
    return $language->getCode();
},

<击>

编辑:阅读完修改后,您确实是对的,不要使用EntityType,而是使用ChoiceType。要填充choices,我认为您应该使用DependencyInjection在您的表单中注入LanguageRepository,然后在您的存储库中创建一个查询以获取所有语言代码。