标签:完成 cti 首页 temp 状态 nbsp class djang 路径
request的path是相对路径,所以可以根据访问路径的前几位来判断当前页,用法如下:
{%if request.path|slice:‘7‘ == ‘/course’%} class="active"{% endif %}
使用django的template中的slice过滤器,使用路径的前六个字符
首页的匹配直接使用
{%if request.path == ‘/’%} class="active"{% endif %}
利用Django的request的path完成导航栏选项的选中状态
标签:完成 cti 首页 temp 状态 nbsp class djang 路径
原文地址:http://www.cnblogs.com/onlyhold/p/7894857.html