gpt4 book ai didi

python - django 如果标签和 ifequal 标签不能正常工作

转载 作者:行者123 更新时间:2023-11-28 21:48:17 25 4
gpt4 key购买 nike

views.py:

def get(request):
p = Publisher.objects.filter(name='tux')
return render(request, 'main.html', {'items': p[0]})

main.html:

<html>    
<body>
{{ items }}
<hr>
{% if 'tux' in items %}
<h1>this is tux</h1>
{% else %}
<h1>sorry!</h1>
{% endif %}
</body>
</html>

网页上打印的内容:

燕尾服


对不起!

如果我想使用 {% ifequal %} 标签呢?应该使用什么语法?我试过这个:

{% ifequal {{items}} 'tux' %}

它变成了解析错误,我也试过这个:

{% ifequal items 'tux' %}

但结果又是:

燕尾服


对不起!

最佳答案

你不能像这样使用它:{% if 'tux' in items %},因为 items 是一个对象。使用 {% if 'tux' in items.name %} 代替。在 {{items}} 的情况下显示“tux”的原因是您的模型返回 name 字段作为 unicode 表示。

关于python - django 如果标签和 ifequal 标签不能正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35625157/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com