Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的Django模板文件中有两个变量
喜欢
{{orderitem.value.id}}
和`
{{ orderitem.order.id }}
如果它们相等,我需要显示一些数据,但我不知道如何比较html 文件中的变量。
请建议。
使用ifequal标签比较模板中的变量:
样本:
{% ifequal orderitem.value.id orderitem.order.id %} <p>are equals!<p/> {% endifequal %}