我想在树枝上做一些数学计算。我有两个变量,价格和数量,我想将它们相乘。但是,当我这样做时:
{{ {{ 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 "{".
我该怎么做
答案 0 :(得分:1)
这是因为你复制{}
,尝试这样的事情:
{{ carts.price * carts.quantity }}