在我的Django项目中,我有一个页面显示项目列表,每个项目旁边都有一个复选框。出于某种原因,某些复选框无法检查'。我无法说明为什么这种行为会发生变化,因为大多数复选框都能正常工作。当我以同样的方式显示它们时,为什么有些复选框可以工作而有些复选框无效?
来自mypage.html的摘录:
<form method="get" action="next_step">
{% for item in myitems %}
<input type="checkbox" name="yourselection" value="{{item.id}}"> Item info goes here
{% endfor %}
</form>