首页 > 代码库 > [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 %} 错误