gpt4 book ai didi

python - 如何在tbody 为空时隐藏thead?

转载 作者:太空宇宙 更新时间:2023-11-04 01:35:26 27 4
gpt4 key购买 nike

jinja2 中的 if 对于了解是否定义了一个值很有用,但我需要知道查询是否有结果?例如:

<thead>
{% if row in rows %} # this is a pseudo-code that i looking for
...
</thead>
<tbody>
{% for row in rows %}
...
</tbody>

rows 是 gql 查询的结果,其中 'no result' 为 NULL 但

{% if rows == NULL %}

{% if rows is none %}

不要帮我。我想在 tbody 为空时隐藏 thead。

最佳答案

您是否尝试过:{% if rows %}

编辑:为了防止 thead 出现在每一行中,请将 if 语句放在 for 循环之外。像这样的东西:

{% if rows %}
<thead>
</thead>
{% endif %}

<tbody>
{% for row in rows %}
...
</tbody>

关于python - 如何在tbody 为空时隐藏thead?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10362415/

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