标签: python django django-models
如何在django中获取模型字段的数量?
答案 0 :(得分:5)
您应该查看模型的_meta属性:
_meta
In [1]: from django.contrib.auth.models import User In [2]: len(User._meta.fields) Out[2]: 11 In [3]: len(User._meta.many_to_many) Out[3]: 4