Django表单字段需要基于另一种形式的字段

时间:2017-09-11 22:49:26

标签: python django forms

我有一个表单,我希望根据同一视图中另一个表单的值设置表单字段'required'

实施例

class FormA(forms.Form):
    field_a = forms.CharField()
    field_b = forms.CharField()

class FormB(forms.Form):
    field_x = forms.ChoiceField(choices = [('a', 'a'), ('b', 'b')])

我想根据FormB中fields_x的值,在表单验证期间设置FormA中所需的字段。有没有一种干净的方法在django中做到这一点?

0 个答案:

没有答案