Symfony 4在树枝模板中访问参数

时间:2018-10-25 11:52:42

标签: symfony4

我试图将一些在services.yaml中定义的参数添加到我的模板中,但是似乎找不到任何有效的方法。 我的services.yaml文件配置如下:

parameters:
    locale: 'en'
    BASE_URL: http://localhost:8000
    STATIC_BASE_URL: http://localhost:8000/static

在树枝上

<link rel="stylesheet" href="{{STATIC_BASE_URL}}/thirdparty/bootstrap-3.3.5/dist/css/bootstrap.min.css">

但是结果,

Variable "STATIC_BASE_URL" does not exist.

需要帮助,谢谢。

1 个答案:

答案 0 :(得分:0)

有效!我没有在service.yaml中定义配置,而是在twig.yaml中进行了如下更改:

twig:
   globals:
        BASE_URL: http://localhost:8000
        STATIC_BASE_URL: http://localhost:8000/static