Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在messages.en.yml 中:
variable_name: Welcome to %site_name% - %other_info%
在树枝上
{{ 'variable_name'|trans( -here- ) }}
这是我正在努力知道如何传递数据的部分。我必须这样做(上面只是一个例子)。
也许我误解了这个问题,但如果我理解正确,你只需要给出一个数组作为 trans 过滤器的第一个参数。
{{ 'variable_name'|trans({'%site_name%': 'My Website'}) }}
当然,如果您不将它们放在引号之间,值可以是变量:
{{ 'variable_name'|trans({'%site_name%': 'My Website', '%other_info%': page_name}) }}