获取 Twig 模板中的当前 URI

发布于 2024-12-11 19:28:24 字数 67 浏览 0 评论 0原文

有谁知道如何获取 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

真心难拥有 2024-12-18 19:28:24
{{ app.request.uri }}

如果您想将其读入视图变量:

{% set uri = app.request.uri %}

app 全局视图变量包含各种有用的快捷方式,例如 app.sessionapp.security。 token.user,引用您可能在控制器中使用的服务。

{{ app.request.uri }}

If you want to read it into a view variable:

{% set uri = app.request.uri %}

The app global view variable contains all sorts of useful shortcuts, such as app.session and app.security.token.user, that reference the services you might use in a controller.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文