Symfony 表单 - 具有两个 choice_label 的实体类型
Symfony4 Forms - EntityType with two choice_label
我对 symfony 和 symfony 表单还很陌生。
我有一个带有 EntityType 的表单,如下所示:
->add('customer', EntityType::class, [
'label' => 'Kunde: ',
'class' => Customer::class,
'choice_label' => 'Name',
'query_builder' => function(EntityRepository $er) {
return $er->createQueryBuilder('c')
->select('CONCAT(c.firstname, " ", c.surname) AS Name');
}
])
但我现在得到一个 Error/Warning:
Warning: spl_object_hash() expects parameter 1 to be object, string given
客户实体:
/**
* @ORM\Entity(repositoryClass="App\Repository\CustomerRepository")
*/
class Customer
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="firstname", type="string", length=50, nullable=false)
*/
private $firstname;
/**
* @var string
*
* @ORM\Column(name="surname", type="string", length=50, nullable=false)
*/
private $surname;
...
非常感谢您的宝贵时间和帮助。
您是否在客户实体中创建了 __toString()
方法。
/**
* toString
*
* @return string
*/
public function __toString() {
return $this->getFirstname().' '.$this->getSurname();
}
那么,像这样应该就足够了:
->add('customer')
如果客户与您的实体类型相关,这就足够了
您也可以简单地为 choice_label
使用回调
例如:
->add('customer', EntityType::class, [
'label' => 'Kunde: ',
'class' => Customer::class,
'choice_label' => function (Customer $customer) {
return $customer->getFirstname() . ' ' . $customer->getSurname();
// or better, move this logic to Customer, and return:
// return $customer->getFullname();
},
])
不确定这是否适用于 Symfony 4,但它确实适用于 symfony 5。这更像是 Yoshis 答案的扩展,而不是新答案。
如果您按照 Yoshi 的建议创建一个 getFullname()
函数,您可以执行以下操作。
Customer.php:
public function getFullname(): ?string {
return $this->firstname . ' ' . $this->surname;
}
然后在你的表单中:
->add('customer', EntityType::class, [
'label' => 'Kunde: ',
'class' => Customer::class,
'choice_label' => 'fullname'
])
为客户添加全名功能还允许您在 twig 文件中使用全名。
例如
{{ customer.fullname }}
我对 symfony 和 symfony 表单还很陌生。
我有一个带有 EntityType 的表单,如下所示:
->add('customer', EntityType::class, [
'label' => 'Kunde: ',
'class' => Customer::class,
'choice_label' => 'Name',
'query_builder' => function(EntityRepository $er) {
return $er->createQueryBuilder('c')
->select('CONCAT(c.firstname, " ", c.surname) AS Name');
}
])
但我现在得到一个 Error/Warning:
Warning: spl_object_hash() expects parameter 1 to be object, string given
客户实体:
/**
* @ORM\Entity(repositoryClass="App\Repository\CustomerRepository")
*/
class Customer
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="firstname", type="string", length=50, nullable=false)
*/
private $firstname;
/**
* @var string
*
* @ORM\Column(name="surname", type="string", length=50, nullable=false)
*/
private $surname;
...
非常感谢您的宝贵时间和帮助。
您是否在客户实体中创建了 __toString()
方法。
/**
* toString
*
* @return string
*/
public function __toString() {
return $this->getFirstname().' '.$this->getSurname();
}
那么,像这样应该就足够了:
->add('customer')
如果客户与您的实体类型相关,这就足够了
您也可以简单地为 choice_label
例如:
->add('customer', EntityType::class, [
'label' => 'Kunde: ',
'class' => Customer::class,
'choice_label' => function (Customer $customer) {
return $customer->getFirstname() . ' ' . $customer->getSurname();
// or better, move this logic to Customer, and return:
// return $customer->getFullname();
},
])
不确定这是否适用于 Symfony 4,但它确实适用于 symfony 5。这更像是 Yoshis 答案的扩展,而不是新答案。
如果您按照 Yoshi 的建议创建一个 getFullname()
函数,您可以执行以下操作。
Customer.php:
public function getFullname(): ?string {
return $this->firstname . ' ' . $this->surname;
}
然后在你的表单中:
->add('customer', EntityType::class, [
'label' => 'Kunde: ',
'class' => Customer::class,
'choice_label' => 'fullname'
])
为客户添加全名功能还允许您在 twig 文件中使用全名。
例如
{{ customer.fullname }}