I’m implementing a Django Form witch should contain the field ‘fieldA’ from modelA
:
JavaScript
x
4
1
class ModelA(models.Model):
2
fieldA = models.CharField(max_length=8)
3
4
My question is: Is there a way to have Django form, which will automatically handle validation of fieldA (check the max_length)? I know I Could use form.ModelForm
class referring to ModelA, but then the form would reflect all the fields of the ModelA. I would like to use simple forms.Form
.
I’m looking for a solution like:
JavaScript
1
6
1
class formX(forms.Form):
2
fieldA = forms.CharField(**modelA.fieldA.constraints)
3
fieldB = some other fields not related to ModelA
4
even more fields .
5
6
Advertisement
Answer
I found a way how to achieve a validation of form Field reflecting constrains from model Field.
JavaScript
1
7
1
class Foo(models.Model):
2
x = models.CharField(max_length=30)
3
y = models.IntegerField(null=True)
4
5
class FooForm(forms.Form):
6
foo_x = forms.CharField(validators=Foo._meta.get_field('x').validators)
7
Like this, the form will respect the max_length
validator of attribute x
or any other validator defined.