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.
我已经从视图字典传递到模板页面。如何在模板内部检查字典的大小是否大于 0 以及是否大于 0 以获取第一个键值对?
{% if some_dict %} Some (k, v) - {{ some_dict.items.0 }} {% endif %}
请注意,Python dicts 是无序的,因此没有“第一个”kv 对。
你确定模板是这个逻辑的好地方吗?我不是。