例如
<div class="price">{{blocks.quantity}} x {{blocks.price}} </div>
我想将价格乘以数量
Json文件中的数据。
答案 0 :(得分:1)
有多种方法可以做到这一点,包括构建过滤器。
一种简单的方法是在将使用该值的模板中对其进行定义:
{% set total_price = blocks.quantity * blocks.price %}
然后您可以说:
I will sell you {{ blocks.quantity }} apples for {{ blocks.price }} each, the
total price will be {{ total_price }}.
您还可以在逻辑中使用它:
{% if total_price > 100 %}
Price per apple is {{ blocks.price }}
{% else %}
Price per apple is {{ blocks.price * 0.9 }}
{% endif %}
最后,您可以像以前的评论者Sauntimo已经说过的那样{{blocks.quantity*blocks.price}}
来表达它。
答案 1 :(得分:0)
您应该能够在双花括号内执行数学运算,如下所示:
<div class="price">{{blocks.quantity*blocks.price}}</div>
中的文档
答案 2 :(得分:0)
var nunjucks = require('nunjucks');
var env = nunjucks.configure();
env.addFilter('mysum', function (arr) {
return arr
.map(e => e.quantity * e.price) // get amount to each e
.reduce((sum, e) => sum + e, 0) // calc total summa
});
var data = [
{price: 10, quantity: 2},
{price: 2, quantity: 7},
{price: 5, quantity: 11}
]
var res = env.renderString(`{{ data | mysum }}`, {data});
console.log(res);