码迷,mamicode.com
首页 > 其他好文 > 详细

[Django]template {% if 1==1 %} 错误

时间:2014-11-04 19:50:56      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:django   ifequal   if   错误   等于   

今天群里有个人问,在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 %} 错误

标签:django   ifequal   if   错误   等于   

原文地址:http://blog.csdn.net/orangleliu/article/details/40787713

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!