如何从 twig 模板中的 Symfony2 config.yml 读取配置设置?

发布于 2024-12-07 12:10:00 字数 122 浏览 0 评论 0原文

在控制器中,我可以这样读

$this->container->getParameter('test');

但是如何在我的树枝模板中获取这个 var“test”?

In controller i can read like this

$this->container->getParameter('test');

But how get this var "test" in my twig template?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

允世 2024-12-14 12:10:00

取决于您需要获取什么,我从 parameters.ini 获取数据的方式是:

config.yml

twig:
    globals: 
        google_maps_api_key: %google_maps_api_key% 

parameters.ini

[parameters]
    google_maps_api_key="authkey"

模板中的

{{ google_maps_api_key }}

希望有帮助。

Depends what you need to get, my way of getting data from parameters.ini is:

config.yml

twig:
    globals: 
        google_maps_api_key: %google_maps_api_key% 

parameters.ini

[parameters]
    google_maps_api_key="authkey"

in template:

{{ google_maps_api_key }}

Hope it helps.

云淡风轻 2024-12-14 12:10:00

是的,您可以创建自己的 Twig 扩展,在此类中您可以重写 getGlobals() 并返回包含全局变量的数组。

或者您可以在此扩展 param($value) 中创建一个 Twig 方法来返回正确的参数。

Yes, you can create your own Twig extension, in this class you can override getGlobals() and return an array with your global variables.

Or you can create a Twig method in this extension param($value) to return the right parameter.

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