Symfony表单Select2允许用户输入新值

时间:2015-12-26 17:33:25

标签: php jquery-select2 symfony-forms symfony

我有一个Symfony表单,其中我有一个省的字段,将其转换为Select2。我想允许用户也允许新值。

 ->add('province', 'entity', array(
                'class' => 'PNC\GeneralBundle\Entity\State',
                'property' => 'name',
                'empty_value'=>'-- Select Province --',
                'label' => ucfirst('State / Province / Region'),
                'required'  => false,
                'attr' => array('class' => 'form-control'),
                'label_attr' => array('class' => 'control-label'),
                'mapped' => false,
            ))

树枝

$('#user_profile_type_province').select2({
    tags: "true",
});

控制器

if ($request->getMethod() == 'POST') {
 $UserProfileForm->handleRequest($request);
 $province = $UserProfileForm["province"]->getData();
 $tag = $em->getRepository('PNCGeneralBundle:State')->findOneByName($province);
 if(!$tag){
   $newState = new State();
   $newState->setName($province);
   $newState->setCountry($UserProfileForm["country"]->getData());
   $em->persist($newState);
   $em->flush();
   }
}

但是当我在省select2中输入新内容时,我得到provincenull

1 个答案:

答案 0 :(得分:0)

它按预期工作:)你没有实体所以有null。要使其工作,您必须创建一个DataTransformer(http://symfony.com/doc/current/cookbook/form/data_transformers.html)并在那里获取状态,如果它不存在,则创建一个新的实体对象。确保级联正确,以便使用用户个人资料保留新状态。