在我的Django应用程序的一个模板页面中,该页面要求用户从复选框列表中选择他想要的选项。
问题在于,不同用户有不同的选择(例如,根据他们过去的兴趣,有不同的选择)。
如何使用CheckboxSelectMultiple()
字段生成Django表单,为每个用户生成自定义选项?
答案 0 :(得分:1)
在forms.py中,您需要覆盖__init__
方法,并在调用表单类时设置从视图传递的选项。
以下是一个例子:
class UserOptionsForm(forms.Form):
user_personal_options = forms.ChoiceField(choices=(),
widget=forms.CheckboxSelectMultiple)
def __init__(self, *args, **kwargs):
choices = kwargs.pop('choices', None) # return the choices or None
super(UserOptionsForm, self).__init__(*args, **kwargs)
if choices is not None:
self.fields['user_personal_options'].choices = choices
所以在你看来:
def user_options(request, user_id):
if request.method == 'POST':
form = UserOptionsForm(request.POST)
if form.is_valid():
# proccess form data here
form.save()
else:
# render the form with user personal choices
user_choices = [] # do shometing here to make the choices dict by user_id
form = UserOptionsForm(choices=user_choices)