Django:我怎样才能找到ORM知道的模型列表?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django:我怎样才能找到ORM知道的模型列表?相关的知识,希望对你有一定的参考价值。
在Django中,有一个地方我可以获得ORM知道的模型列表或查找模型吗?
答案
简单方案:
import django.apps
django.apps.apps.get_models()
默认情况下apps.get_models()
不包括
- 自动创建的多对多关系模型,没有明确的中间表
- 换掉的模型。
如果你想包括这些,
django.apps.apps.get_models(include_auto_created=True, include_swapped=True)
在Django 1.7之前,改为使用:
from django.db import models
models.get_models(include_auto_created=True)
include_auto_created
参数确保通过ManyToManyField
s隐式创建的表也将被检索。
另一答案
使用http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/列出模型
from django.contrib.contenttypes.models import ContentType
for ct in ContentType.objects.all():
m = ct.model_class()
print "%s.%s\t%d" % (m.__module__, m.__name__, m._default_manager.count())
另一答案
如果你想玩,而不是使用good solution,你可以玩python内省:
import settings
from django.db import models
for app in settings.INSTALLED_APPS:
models_name = app + ".models"
try:
models_module = __import__(models_name, fromlist=["models"])
attributes = dir(models_module)
for attr in attributes:
try:
attrib = models_module.__getattribute__(attr)
if issubclass(attrib, models.Model) and attrib.__module__== models_name:
print "%s.%s" % (models_name, attr)
except TypeError, e:
pass
except ImportError, e:
pass
注意:这是一段相当粗略的代码;它将假设所有模型都在“models.py”中定义,并且它们继承自django.db.models.Model。
另一答案
如果您使用contenttypes应用程序,那么它很简单:http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/
另一答案
如果使用admin应用程序注册模型,则可以在管理文档中查看这些类的所有属性。
另一答案
这是查找和删除数据库中存在但ORM模型定义中不存在的任何权限的简单方法:
from django.apps import apps
from django.contrib.auth.management import _get_all_permissions
from django.contrib.auth.models import Permission
from django.core.management.base import BaseCommand
class Command(BaseCommand):
def handle(self, *args, **options):
builtins = []
for klass in apps.get_models():
for perm in _get_all_permissions(klass._meta):
builtins.append(perm[0])
builtins = set(builtins)
permissions = set(Permission.objects.all().values_list('codename', flat=True))
to_remove = permissions - builtins
res = Permission.objects.filter(codename__in=to_remove).delete()
self.stdout.write('Deleted records: ' + str(res))
以上是关于Django:我怎样才能找到ORM知道的模型列表?的主要内容,如果未能解决你的问题,请参考以下文章