我在twig.yaml中有一个名为“ img_path_from_web_css”的参数。我想在css文件(myStyles.css.twig)中使用它,以避免在所有css中重复此路径,但是它不起作用。我的意思是,如果使用myStyles.css,则“喜欢”类有效(图像可见),但如果使用myStyles.css.twig,则无效。 不过,Symfony 4文档指定了树枝引擎应该运行。
myStyles.css.twig:
.fond
{
background-image : url('{{img_path_from_web_css}}fond.png');
}
myStyles.css:
.fond
{
background-image : url('../../public/images/fond.png');
}
twig.yaml:
twig:
...
globals:
img_path_from_web_css: '../../public/images/'