Django doesn't call model clean method

前端 未结 4 1155
后悔当初
后悔当初 2020-12-29 03:00

I have a view, which creates models from CSV file. I\'ve added clean method to the model class definition, but it isn\'t called when model is created.

Here is exampl

4条回答
  •  南笙
    南笙 (楼主)
    2020-12-29 03:16

    Apparently in newer versions of Django the ModelForm.full_clean does call it's instance's full_clean method:

    • https://github.com/django/django/blob/14e2b1/django/forms/models.py#L403

提交回复
热议问题