我的搜索表单有问题。我的选择可能不包含任何内容。 这就是为什么我想在它为空时显示默认消息。
然而,当我设置'empty_data'属性时,没有任何反应,总是我的空选择。 我的FormType:
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('organisation',ChoiceType::class,array(
'choices' => $options['distributeurs'],
'choice_label' => function ($value, $key, $index) {
return $value->getOrganisation();
},
'choice_value' => 'id',
'empty_data' => 'No distributor found'
));
}
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'distributeurs' => 'ProjectBundle\Entity\Organisation\Organisation',
));
}
/**
* {@inheritdoc}
*/
public function getBlockPrefix()
{
return 'projectbundle_organisation_search';
}
在控制器级别:
$distributeurs = $em->getRepository('ProjectBundle:Organisation\Organisation')->createQueryBuilder('a')
->where('a.id IN (:distributeurs)')->setParameter('distributeurs',$organisationDistriId)->getQuery()->execute();
$form = $this->createForm('ProjectBundle\Form\Organisation\OrganisationDistributeurType', null, array(
'distributeurs' => $distributeurs,
'action' => $this->generateUrl('admin_organisations_index'),
'method' => 'GET',
));
表单和信息正常工作,只有'empty_data'属性没有显示。
'占位符'属性有效,但这不是我想要的。
你有什么想法吗?
谢谢!
答案 0 :(得分:1)
尝试下次发布您的代码而不是图片,因为这不清楚。
在您的表单生成器中尝试以这种方式创建选择(占位符从2.6版实现):
$builder->add('organisation', ChoiceType::class, array(
'placeholder' => 'Choose an option',
));