最佳答案
假设我有一个类似这样的 Django 类:
class Person(models.Model):
name = models.CharField(max_length=50)
# ...
如何以编程方式获取 name
字段的 max_length
值?