首页 > 代码库 > [Django]template {% if 1==1 %} 错误
[Django]template {% if 1==1 %} 错误
今天群里有个人问,在django的模板里面,下面这段代码为啥不对?
{% if 1==1 %} {% endif %}
乍一看我还不信, == 不就是判断是不是相等的吗? 自己把代码放到一个网页里面试了试.
TemplateSyntaxError at /mngm/operationlog/search/ Could not parse the remainder: '==1' from '1==1'果然是不对,看了点源码,其实就是不能解析这个格式,也没啥特别的。 不过不注意可能会写错。
template中有这种专门的比较操作标签 ifequal
https://docs.djangoproject.com/en/1.6/ref/templates/builtins/#ifequal
{% ifequal user.pk comment.user_id %} ... {% endifequal %}
有时候就是思维惯性,觉着模板里面的函数不就是python吗,其实还真不是。
本文出自 “orangleliu笔记本” 博客,转载请务必保留此出处http://blog.csdn.net/orangleliu/article/details/40787713
作者: orangleliu
[Django]template {% if 1==1 %} 错误
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。