我运行此代码来获取我的选择控件,它工作正常。
$builder
->add('access', 'entity', array(
'label' => 'Behörigheter',
'multiple' => true, // Multiple selection allowed
'expanded' => true, // Render as checkboxes
'property' => 'name',
'class' => 'BizTV\ContainerManagementBundle\Entity\Container',
'query_builder' => function(\Doctrine\ORM\EntityRepository $er) use ($company) {
$qb = $er->createQueryBuilder('a');
$qb->innerJoin('a.containerType', 'ct');
$qb->where('a.containerType IN (:containers)', 'a.company = :company');
$qb->setParameters( array('containers' => array(1,2,3,4), 'company' => $company) );
$qb->orderBy('ct.id', 'ASC');
return $qb;
}
));
现在我希望能够为复选框自定义标签,前几天我了解到,通过将属性更改为 select_label 并在实体中定义该函数,您可以完成此操作,但是使用此查询它不起作用。
这是因为我要加入吗?有没有办法实现它?
这是不起作用的代码
$builder
->add('access', 'entity', array(
'label' => 'Behörigheter',
'multiple' => true, // Multiple selection allowed
'expanded' => true, // Render as checkboxes
'property' => 'select_label',
'class' => 'BizTV\ContainerManagementBundle\Entity\Container',
'query_builder' => function(\Doctrine\ORM\EntityRepository $er) use ($company) {
$qb = $er->createQueryBuilder('a');
$qb->innerJoin('a.containerType', 'ct');
$qb->where('a.containerType IN (:containers)', 'a.company = :company');
$qb->setParameters( array('containers' => array(1,2,3,4), 'company' => $company) );
$qb->orderBy('ct.id', 'ASC');
return $qb;
}
));
在我拥有的实体中:
public function getSelectLabel()
{
return $this->name . ' (' . $this->parent->getName() . ')';
}
它适用于另一种具有 SELECT(单选)控件的表单,但不适用于这个......
我得到的错误是
致命错误:在第 190 行的 /var/www/biztv_symfony/src/BizTV/ContainerManagementBundle/Entity/Container.php 中的非对象上调用成员函数 getName()