我想要实现以下内容:在我的parameters.yml中我有uploads_url: http://test.site.com
。它是我的图像的Docker容器的URL。接下来,我有entity
这些图片的名称。
我想在twig
中生成这样的网址:
background-image: url({{ 'URL from parameters' + 'name of picture from `entity`' }})
目前我有前一个表达的第二部分(图片的名称)。我怎样才能生成第一部分?
答案 0 :(得分:2)
应用程序/配置/ config.yml
# Twig Configuration
twig:
globals:
url: "%url%"
应用程序/配置/ parameters.yml
parameters:
url: 'your_url'
官方文件How to Inject Variables into all Templates (i.e. global Variables)
twig concatenate How to concatenate strings in twig