我的 Django 1.2 模板中有这个:
{% for m in model.related.iterator %}
{% if "str" or "Str" in m %}
{{m}}//I don't want anything here but put this in so I could see the output
{%else%}
{% if forloop.last %}
{% customtag "var" %}
{% endif %}
{% endif %}
{% endfor %}
{{m}}
无论它是否包含"str"
,我都会得到价值,"Str"
或者它们都不包含。另外,如果我取出or
并比较一个字符串,它可以工作,但我想在没有另一个的情况下比较两者else if
。有什么办法吗?