我想警告或阻止用户删除其他实例引用的对象实例。有没有一个很好的方法来做到这一点?
一种方法是获取包含指示物的模型列表,然后尝试对它们进行反向查找。有没有办法获得模型列表?或者有更好的方法吗?
在调查收集器建议时,我发现了一些相关信息,并编写了以下内容,找到了将所指对象作为外键的类:
def find_related(cl, app):
"""Find all classes which are related to the class cl (in app) by
having it as a foreign key."""
from django.db import models
all_models = models.get_models()
ci_model = models.get_model(app, cl)
for a_model in all_models:
for f in a_model._meta.fields:
if isinstance(f, ForeignKey) and (f.rel.to == ci_model):
print a_model.__name__
根据建议使用collect中的代码:
def find_related(instance):
"""Find all objects which are related to instance."""
for related in instance._meta.get_all_related_objects():
acc_name = related.get_accessor_name()
referers = getattr(instance, acc_name).all()
if referers:
print related
答案 0 :(得分:3)
Django有一个叫Collector类的东西。 Django在执行模型删除时使用它。它的作用似乎正是你想要的。通过调用collect()
,它可以在模型图中找到对象的所有引用。此外,它提供了一种通过delete()
调用删除所有找到的对象的方法。
那说我自己从未使用过这门课,我只知道它存在。 API有点令人费解,但是如果你愿意稍微深入研究一下Django的内部,它可能会为你节省很多代码。