3.5.template语法及过滤器
模板语法示例
条件语句
{% if my_message.name == 'bobby' %}bobby_test{% endif %}{% if not my_message.name == 'bobby' %}has_bobby{% else %}no_has_bobby{% endif %}{% ifequal my_message.name 'sophie' %}has_bobby{% else %}no_has_bobby{% endifequal %}循环语句
{% for hot_org in hot_orgs %}
{{ forloop.counter }} // 获取循环的index
{{ hot_org.name }}
{% endfor %}过滤器
整型转字符串
字符截取
urls配置技巧
配置别名
使用{% url '...' %}代替硬编码
Last updated