Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有 Account 实体的 symfony2 项目。它有两个属性 id 和 description。
在我的控制器中,我想用另一个名为 name 的字段来丰富我的学说 Objekts。这个属性不会被持久化,只在我的树枝模板中使用。在树枝中,我想使用 {{Account.name}}。
如何将值分配给控制器中可用于 twig 文件的对象?
谢谢,问候迈克
哦,其实很简单 :-)
我可以简单地添加
$entity->myproperty = "whatever i want";
然后在我的树枝模板中我使用
{{entity.myname}}
无论如何,谢谢...我不知道我可以像这样为我的对象分配属性。