gpt4 book ai didi

python - 如何在 Jinja 2 中使用条件 if 语句?

转载 作者:行者123 更新时间:2023-12-03 14:46:11 27 4
gpt4 key购买 nike

所以我是 Django 的新手,可以使用一些帮助。
我使用了 for 循环来显示我的数据库中的列表。但我想添加一个 if 语句,如果用户输入与我的数据库项目匹配,那么它才应该被显示。看一看 :

{%for inc in all_items%}
<ul>
{#I want to add an if statement here, if user input == inc_element#}
<li><p>{{inc.item_name}}<p></li>
</ul>
<hr>
{%endfor%}

我知道我必须使用 HTML 论坛来获取用户输入。但是我如何在 if 语句中匹配它。帮助将不胜感激。

最佳答案

一般条件语法是这样的:

{% if some_variable == some_value %}
{{ do_something }}
{% endif %}

文档还有更多 examples .

关于python - 如何在 Jinja 2 中使用条件 if 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48169611/

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