获取 Twig 模板中的当前 URI
有谁知道如何获取 Twig 模板中的当前 URI?
我已通读文档,但找不到 Twig 函数来执行此操作。
Does anybody know how to get the current URI in a Twig template?
I’ve read through the documentation and I’m unable to find the Twig function to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想将其读入视图变量:
app
全局视图变量包含各种有用的快捷方式,例如app.session
和app.security。 token.user
,引用您可能在控制器中使用的服务。If you want to read it into a view variable:
The
app
global view variable contains all sorts of useful shortcuts, such asapp.session
andapp.security.token.user
, that reference the services you might use in a controller.