Geo*_*Geo 60 django django-models django-forms django-admin django-contenttypes
有没有办法告诉django具有contenttypes GenericForeignKey的模型只能指向预定义列表中的模型?例如,我有4个模型:A,B,C,D和一个包含GenericForeignKey的模型X. 我可以告诉X,GenericForeignKey只允许A和B吗?
mum*_*ino 110
例如,您的应用程序是app和app2,应用程序中有A,B模型,app2中有C,D模型.你想只看到app.A和app.B和app2.C
from django.db import models
class TaggedItem(models.Model):
tag = models.SlugField()
limit = models.Q(app_label = 'app', model = 'a') | models.Q(app_label = 'app', model = 'b') | models.Q(app_label = 'app2', model = 'c')
content_type = models.ForeignKey(ContentType, limit_choices_to = limit)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')
Run Code Online (Sandbox Code Playgroud)
在ForeignKey上使用limit_choices_to.
检查django docs的详细信息和Q对象,app_label.你需要写适当的app_label和模型.这只是代码片段
加:我认为你写错了app_label.这可以帮到你.
from django.contrib.contenttypes.models import ContentType
for c in ContentType.objects.all():
print(c.app_label, c.model)
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
10909 次 |
| 最近记录: |