gpt4 book ai didi

syntax - 如何连接 Twig 中的字符串

转载 作者:行者123 更新时间:2023-12-03 03:55:59 30 4
gpt4 key购买 nike

有人知道如何在 twig 中连接字符串吗?我想做一些类似的事情:

{{ concat('http://', app.request.host) }}

最佳答案

这应该可以正常工作:

{{ 'http://' ~ app.request.host }}

要在同一标记中添加过滤器(例如“trans”)

{{ ('http://' ~ app.request.host) | trans }}

Adam Elsodaney points out ,您还可以使用string interpolation ,这确实需要双引号字符串:

{{ "http://#{app.request.host}" }}

关于syntax - 如何连接 Twig 中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7704253/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com