推荐学习书目
› Learn Python the Hard Way
Python Sites
› PyPI - Python Package Index
› http://diveintopython.org/toc/index.html
› Pocoo
值得关注的项目
› PyPy
› Celery
› Jinja2
› Read the Docs
› gevent
› pyenv
› virtualenv
› Stackless Python
› Beautiful Soup
› 结巴中文分词
› Green Unicorn
› Sentry
› Shovel
› Pyflakes
› pytest
Python 编程
› pep8 Checker
Styles
› PEP 8
› Google Python Style Guide
› Code Style from The Hitchhiker's Guide
cheyo
V2EX  ›  Python

Django 中模板的 if 条件这样为什么出错了?

  •  
  •   cheyo · Oct 30, 2014 · 4904 views
    This topic created in 4348 days ago, the information mentioned may be changed or developed.
    {% if 1==house.status %}
    <span class="label label-success">
    {% elif 2==house.status %}
    <span class="label label-primary">
    {% elif 3==house.status %}
    <span class="label label-info">
    {% elif 4==house.status %}
    <span class="label label-default">
    {% else %}
    <span class="label label-danger">
    {% endif %}
    {{ house.get_status_display }}</span>

    错误信息:
    TemplateSyntaxError at /project/19607/
    Could not parse the remainder: '==house.status' from '1==house.status'

    谢谢
    10 replies  •  2014-10-31 17:24:27 +08:00
    stillwater
        1
    stillwater  
       Oct 30, 2014
    用ifequal?
    virusdefender
        2
    virusdefender  
       Oct 30, 2014   ❤️ 1
    {% ifequal a "111" %}{% endifequal %}判断相等
    ericls
        3
    ericls  
       Oct 30, 2014 via Android   ❤️ 1
    if house.status == 1应该可以
    注意必须有空格
    cheyo
        4
    cheyo  
    OP
       Oct 30, 2014
    @ericls 果然加一个空格就行了
    @stillwater
    @virusdefender 用ifequal也行

    谢谢
    rcmerci
        5
    rcmerci  
       Oct 30, 2014
    模板里空格挺严格的
    mornlight
        6
    mornlight  
       Oct 30, 2014
    要有空格,如果你用Pycharm的话应该会提示你
    taobeier
        7
    taobeier  
       Oct 31, 2014
    不太习惯的话, 就用个IDE会稍微好点。
    tuteng
        8
    tuteng  
       Oct 31, 2014
    mark
    gevin
        9
    gevin  
       Oct 31, 2014
    如果house.status的类型是str,你的代码那个就成了:
    {% if 1=='1' %}

    这种情况下就会报错

    需要保持 '==' 两边值得类型一致
    nooper
        10
    nooper  
       Oct 31, 2014
    Try to remove the complex in the if cases.Just judge by integer , what if the status change , that's should not be hard code in the template. and you'd better add the logic into the views. or templatetags.
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Privacy   ·   Solana   ·   822 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 36ms · UTC 21:26 · PVG 05:26 · LAX 14:26 · JFK 17:26
    ♥ Do have faith in what you're doing.