How do I get the default value for a field in a Django model?

后端 未结 5 1333
日久生厌
日久生厌 2021-02-02 07:09

I have a Django model with some fields that have default values specified. I am looking to grab the default value for one of these fields for us later on in my code. Is there

5条回答
  •  日久生厌
    2021-02-02 07:31

    if you don't want to write the field name explicitly, you can also do this: MyModel._meta.get_field(MyModel.field.field_name).default

提交回复
热议问题