我有一个ModelMultipleChoiceField,它允许用户选择一组我的“社区”模型中的一个或多个(类似于加入subreddit的用户)。当用户重新打开页面以选择社区时,用户之前选择的字段上没有复选框。我希望这样做,以便先前选择的社区保留复选框,因此,当用户点击提交时,如果他们不重新选择先前的选择,就不会忘记他们先前的选择。
这是我的表格:
class CustomChoiceField(forms.ModelMultipleChoiceField):
def label_from_instance(self, obj):
return obj.name
class CommunitySelectForm(forms.ModelForm):
community_preferences = CustomChoiceField(queryset=Community.objects.all(), widget=forms.CheckboxSelectMultiple)
class Meta:
model= UserQAProfile
fields = ['community_preferences']
这是我的模板:
<div class="col-sm-8 input">
<form method="post" enctype='multipart/form-data'>
{% csrf_token %}
{{ form.as_p }}
<input class="btn btn-submit pull-left" type="submit" value="Choose Communities" />
</form>
</div>
UserQAProfile模型具有一个ManyToMany字段来存储首选项:
community_preferences = models.ManyToManyField(Community)
这是初始化表单的视图:
def joinCommunities(request, user_id):
user_ob = get_user_model().objects.filter(id=user_id).first()
full_user_profile = UserQAProfile.objects.filter(user=user_ob).first()
if request.method == 'POST':
form = CommunitySelectForm(request.POST, instance=full_user_profile)
if form.is_valid():
form.save()
context = {'user': full_user_profile, 'full_user_profile':full_user_profile}
context['communities'] = context['user'].community_preferences.all()
return render(request, 'qa/profile.html', context)
else:
form = CommunitySelectForm()
return render(request, 'qa/select_communities.html', {'form' : form})
答案 0 :(得分:0)
您仅在instance
请求期间将POST
传递给表单,这意味着当用户通过GET
请求重新访问该页面时,该表单不受任何约束实例,并且先前的选择不会出现。
您只需要在初始化表单时传递实例:
else:
form = CommunitySelectForm(instance=full_user_profile)
return render(request, 'qa/select_communities.html', {'form' : form})