【django】模板语句with for...empty

简单赋值语句 在区块内有效

{% with  a=article.users_like.count   b = article.users_like.all %}

。。。。。。。

{% endwith %}

for循环为空

{% for athlete in athlete_list %}

       <li>{{ athlete.name }}</li>

{% empty %}

        <li> 没有元素 </li>

{% endfor %}

猜你喜欢

转载自blog.csdn.net/qq1518572311/article/details/85247034
今日推荐