在django模板中减去两个变量

时间:2015-03-03 10:26:56

标签: python django django-templates

我必须在django模板中减去两个值。我怎么能这样做?

{{ obj.loan_amount }} - {{ obj.service_charge }}

1 个答案:

答案 0 :(得分:2)

有两种方法可以做到这一点。

1)更优选的方式(基于业务逻辑和模板逻辑的分离)是计算您在views.py中尝试执行的操作,然后通过上下文传递值。例如:

class FooView(View):
    def get(self, request, *args, **kwargs):
        obj = Foo.objects.get(pk=1)
        obj_difference = obj.loan_amount - obj.service_charge
        return render(request, 'index.html', {'obj': obj,
                                              'obj_difference': obj_difference})

这样您就可以在模板中直接使用{{ obj_difference }}

2)第二种方法是使用模板标签,这是不太理想的。

@register.simple_tag(takes_context=True)
def subtractify(context, obj):
    newval = obj.loan_amount - obj.service_charge
    return newval

这样您就可以在模板中使用{% subtractify obj %}

注意:如果您使用方法#2,请不要忘记在HTML文件的顶部使用{% load [tagname] %}