比较变量和字符

时间:2018-05-08 20:57:58

标签: python django django-templates

您好我在这个模板中使用django模板:

{% if material.unit =='U' %} 
    p/(u)
{% endif %}
{% if material.unit == 'M' %} 
    p/(m)
{% endif %}

我想打印p /(u)当变量material.unit是' U'和p /(m)何时是' M'。 这不能正常工作。给我这个错误:

Could not parse the remainder: '=='U'' from '=='U''

1 个答案:

答案 0 :(得分:1)

==之后添加空格:

{% if material.unit == 'U' %}