我试图将一些在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.
需要帮助,谢谢。
答案 0 :(得分:0)
有效!我没有在service.yaml
中定义配置,而是在twig.yaml
中进行了如下更改:
twig:
globals:
BASE_URL: http://localhost:8000
STATIC_BASE_URL: http://localhost:8000/static