您如何在 easyadmin 捆绑包中将价值显示为标题?
How do you show value as a title in easyadmin bundle?
在 config.yml
edit:
title: 'editing %firstname% '
fields:
- {property: firstname, type: string}
- {property: lastname, type: string}
- {property: email, type: string}
- {property: password,type: password}
- {property: mobilenumber, type: string}
- enabled
我希望用户名动态出现,但 %firstname% 不起作用。
您只能在编辑视图中显示实体 ID,如下所示:
title: 'editing %%entity_id%%'
从那里开始,您可以使用 Doctrine 复合主键在用户 class:
的主键中包含名字(或用户名?)
/** @ORM\Id @ORM\Column(type="string") */
private $username;
在 config.yml
edit:
title: 'editing %firstname% '
fields:
- {property: firstname, type: string}
- {property: lastname, type: string}
- {property: email, type: string}
- {property: password,type: password}
- {property: mobilenumber, type: string}
- enabled
我希望用户名动态出现,但 %firstname% 不起作用。
您只能在编辑视图中显示实体 ID,如下所示:
title: 'editing %%entity_id%%'
从那里开始,您可以使用 Doctrine 复合主键在用户 class:
的主键中包含名字(或用户名?)/** @ORM\Id @ORM\Column(type="string") */
private $username;