0 votes
in Django by

What can be used to validate all model fields, if any field is to be exempted from validation? Provide it in the exclude parameter.

select the correct answer from below options

a) Model.clean()

b) Model.clean_fields(exclude=None)

c) Model.full_clean()

d) Model.validate_unique(exclude=None)

1 Answer

0 votes
by
d) Model.validate_unique(exclude=None)

Related questions

0 votes
asked Jun 25, 2022 in Django by sharadyadav1986
0 votes
asked Jun 26, 2022 in Django by john ganales
...