带变量的Twig数学

时间:2018-04-18 09:29:54

标签: math twig

我想在树枝上做一些数学计算。我有两个变量,价格和数量,我想将它们相乘。但是,当我这样做时:

{{ {{ carts.price }} * {{ carts.quantity }} }}

它返回错误

A hash key must be a quoted string, a number, a name, or an expression enclosed in parentheses (unexpected token "punctuation" of value "{".

我该怎么做

1 个答案:

答案 0 :(得分:1)

这是因为你复制{},尝试这样的事情: {{ carts.price * carts.quantity }}

一些文档https://twig.symfony.com/doc/2.x/templates.html#math