我在 django 1.5.2 中有一组模型,它们都使用GenericForeignKey
和GenericRelation
. 问题是我也使用代理继承。泛型关系是字段,但不是数据库字段,但在验证模型时,django 在代理继承模型中看到字段并引发错误。
以下是我的问题的简化版本。是否有一个简单的解决方案可以让我简单地访问来自 TaggableArticle 的标签?
from django.db import models
from django.contrib.contenttypes import generic
from django.contrib.contenttypes.models import ContentType
class Tag(models.Model):
tag = models.SlugField()
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')
class Article(models.Model):
text = models.TextField()
class TaggableArticle(Article):
tags = generic.GenericRelation(Tag)
class Meta:
proxy = True
结果是:
python manage.py validate
FieldError: Proxy model 'TaggableArticle' contains model fields.
[1] 15784 exit 1 python manage.py validate
到目前为止我的想法:
- django 1.6
for_concrete_model
在泛型关系中引入了一个标志,但我无法查看这是否可以解决我的问题。我只是明白,如果关系在 Article 中,并且我希望能够使用正确的内容类型(Article 与 TaggedArticle)标记对象,它会有所帮助。 - 我可以删除关系并仅从另一个端点访问它(即 `Tag.objects.filter(content_object=myTaggedArticle) 或手动添加一个方法)但是我已经集成了我正在使用的事实的部分实现 RelatedManager而不仅仅是一个普通的经理,如果我来自整个 TaggedArticle 班级,我就不会得到一个相关的经理。
谢谢你!