Django Template如何将所选值设置到下拉框中

时间:2012-11-13 12:00:52

标签: django django-templates

    <select id="_count_id">
        {% for item in list_count %}
            <option value="{{ item }}" {% if item==count %}selected="selected"{% endif %}>{{ item }}</option>
        {% endfor %}
    </select>

使用上面的代码将所选值设置为html下拉列表尽管它不起作用。 count是一个numnberical值,item是1到99之间的任何值。我无法弄清楚我在哪里做错了什么。任何人都可以帮忙吗?提前谢谢

1 个答案:

答案 0 :(得分:0)

运行时出现此错误

Exception Value: Could not parse the remainder: '==count' from 'item==count'

如果将其更改为item == count('=='周围的空格),则可以正常工作。