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)
...