正如在这个问题上回答How do I get the entity that represents the current user in Symfony2?这说明了如何在控制器上执行此操作,但是如何在php模板上获取实际用户实体而无需将参数发送到模板?
我得到的是:
$ APP->的getSession() - > getUsername();
但是这只是给了一个带有用户名的原始var,我想要用户实体。
答案 0 :(得分:4)
您可以在php模板中使用$app->getUser()
,在树枝模板中使用app.user
。