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

上記のコードを使用して、選択した値を html ドロップダウンに設定しても機能しません。count は数値で、item は 1 から 99 までの任意の値です。どこで何か間違ったことをしたのかわかりません。誰でも助けることができますか?前もって感謝します

4

1 に答える 1

0

実行するとこのエラーが発生します

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

item == count (「==」の前後にスペースを含む) に変更すると、機能します。

于 2012-11-13T14:38:14.987 に答える