Django: ฉันจะหารายชื่อรุ่นที่ ORM รู้จักได้อย่างไร?


คำตอบ:


175

วิธีง่ายๆ:

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พารามิเตอร์เพื่อให้แน่ใจว่าผ่านตารางที่สร้างขึ้นโดยปริยายManyToManyFields จะถูกดึงเป็นอย่างดี


2
ด้วยวิธีการเดียวกันคุณยังสามารถรับโมเดลทั้งหมดได้ในแอพเดียว: stackoverflow.com/a/8702854/117268
Emil Stenström

from django.apps.apps import get_modelsผลิตImportError: No module named 'django.apps.apps'... ความคิดใด?
aljabear

3
from django.apps import apps>>apps.get_models
Dingo


7

หากคุณต้องการพจนานุกรมที่มีทุกรุ่นคุณสามารถใช้ได้:

from django.apps import apps

models = {
    model.__name__: model for model in apps.get_models()
}

4

หากคุณต้องการเล่นและไม่ใช้วิธีแก้ปัญหาที่ดีคุณสามารถเล่นกับ python introspection:

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



0

หากคุณลงทะเบียนโมเดลของคุณกับแอปผู้ดูแลระบบคุณสามารถดูแอตทริบิวต์ทั้งหมดของคลาสเหล่านี้ได้ในเอกสารสำหรับผู้ดูแลระบบ


0

ต่อไปนี้เป็นวิธีง่ายๆในการค้นหาและลบสิทธิ์ที่มีอยู่ในฐานข้อมูล แต่ไม่มีอยู่ในข้อกำหนดของโมเดล 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))
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.