How can I programmatically obtain the max_length of a Django model field?

前端 未结 2 1662
被撕碎了的回忆
被撕碎了的回忆 2020-12-13 07:57

Say I have a Django class something like this:

class Person(models.Model):
    name = models.CharField(max_length=50)
    # ...

How can I p

2条回答
  •  被撕碎了的回忆
    2020-12-13 08:33

    Person._meta.get_field('name').max_length will give you this value. But having to use _meta suggests this is something you shouldn't do in normal usage.

    Edit: as Carl pointed out, this naming is misleading and it does seem quite acceptable to use it: http://www.b-list.org/weblog/2007/nov/04/working-models/

提交回复
热议问题