0

我通过将 window.location.href 设置为:/edit_page/?id=user_id在我的一个页面和我的views.py中呈现到这个页面我有这个:

id = request.GET.get('id') 
users = User.objects.all()
return render_to_response("index.html",{'id':id,'users':users},context_instance=RequestContext(request))

在我的 index.html 中,我有一个选择字段,其中包含从服务器呈现的用户选项,正如您在我的 dict 中看到的那样,默认情况下未选择选择字段。

ID我手中的是被选中在另一个页面中编辑的用户的 ID,但是现在我如何将选项设置为选择 ID 等于“ID在我的左手”中的用户。

希望,我很好地解释了我想要的。

4

1 回答 1

1
<select>
{% for user in users %}
{% if id == user.id %}<option selected>{% else %}<option>{% endif %}{{ user.first_name }}</option>
{% endfor %}
</select>
于 2013-04-19T08:27:00.353 回答