如何在Twig模板中设置数组值

4
我该如何在Twig模板中通过字符串索引更改数组的值呢?我正在尝试以下代码:
{% do params['redirect_uri'] = 'http://site.loc/' %}

但是我遇到了一个nex错误:
Unexpected token "operator" of value "=" ("end of statement block" expected) in
BWUserBundle:User/social:sign-in-thumbs.html.twig at line 4

我也在尝试:
{% set params['redirect_uri'] = 'http://site.loc/' %}

但也会出现错误:
Unexpected token "punctuation" of value "[" ("end of statement block" expected) in 
BWUserBundle:User/social:sign-in-thumbs.html.twig at line 4

有什么想法吗?
1个回答

6

关于这个,

{% set params = params|merge({'redirect_uri': 'http://site.loc/'}) %}

1
Unexpected token "punctuation" of value "." ("end of statement block" expected) in BWUserBundle:User/social:sign-in-thumbs.html.twig at line 4 - Victor Bocharsky

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接