在我的Django应用程序中,我目前有一个带有几个表单类的表单向导。我希望能够有条件问题。意思是如果用户为某个问题选择“是”,则表单中的另一个问题将变为必需,并且javascript将使问题可见。我找到了一个如何在线完成此操作的示例,但它并不起作用。关于如何创建此功能的任何建议?
class QuestionForm(forms.Form):
COOL_LIST = (
('cool','Cool'),
('really cool','Really Cool'),
)
YES, NO = 'yes','no'
YES_NO = (
(YES,'Yes'),
(NO,'No'),
)
are_you_cool = forms.ChoiceField(choices=YES_NO,label='Are you cool?')
how_cool = forms.MultipleChoiceField(required=False,widget=CheckboxSelectMultiple, choices=COOL_LIST,label='How cool are you?')
def __init__(self, data=None, *args, **kwargs):
super(QuestionForm, self).__init__(data, *args, **kwargs)
if data and data.get('are_you_cool', None) == self.YES:
self.fields['how_cool'].required = True
答案 0 :(得分:0)
尝试使用自定义__init__
方法替换表单的clean_are_you_cool
方法。因此,如果用户提交了值Yes
,您应该检查是否还填充了how_cool
字段。您还应该在客户端执行此操作以提供出色的用户体验。这样的形式:
def clean_are_you_cool(self):
if self.cleaned_data.get('are_you_cool', None) == 'Yes':
if self.cleaned_data.get('how_cool', None) is not None:
# Actions for cool user.
pass
# Or if user not cool.