(Django 1.8.14) 所以我有一个模型,它使用ContentType指向跨不同应用程序的模型集合。
我希望能够“插入”将该模型链接到单独应用程序中的其他模型的功能。所以我们有以下几点:
class MyModelMixin(models.Model):
""" Mixin to get the TheModel data into a MyModel
"""
updated_date = models.DateTimeField(null=True, blank=True)
submission = GenericRelation(
TheModel,
related_query_name='%(app_label)s_the_related_name')
class Meta:
abstract = True
主模型模型如下:
class TheModel(models.Model):
""" This tracks a specific submission.
"""
updated = models.DateTimeField()
status = models.CharField(max_length=32, blank=True, null=True)
final_score = models.DecimalField(
decimal_places=2, max_digits=30, default=-1,
)
config = models.ForeignKey(Config, blank=True, null=True)
content_type = models.ForeignKey(
ContentType,
blank=True,
null=True)
object_id = models.PositiveIntegerField(blank=True, null=True)
my_model_instance = GenericForeignKey()
mixin包含在MyModel模型中,可以在许多不同的应用程序中使用。
使用过滤器时,使用django过滤器会出现问题。我有一个过滤器,应该在使用时对每个应用程序进行实例化。但是当我实例化时,例如,用
class MyFilterSet(Filterset):
def __init__(self, *args, **kwargs):
self.config_pk = kwargs.pop('config_pk', None)
if not self.config_pk:
return
self.config = models.Config.objects.get(pk=self.config_pk)
self.custom_ordering["c_name"] =\
"field_one__{}_the_related_name__name".format(
self.config.app_model.app_label,
)
super(MyFilterSet,self).__init__(*args, **kwargs)
然而,当我使用它时,我得到了
FieldError: Cannot resolve keyword 'my_app_the_related_name field. Choices are: %(app_label)s_the_related_name, answers, config, config_id, content_type, content_type_id, final_score, form, form_id, id, object_id, section_scores, status, updated
%(app_label)s_the_related_name如何在字段集中,以及如何使其正确呈现(就像它在django过滤器之外)或者是否有其他解决方案。
答案 0 :(得分:1)
您可能遇到过issue #25354。在related_query_name
上模板GenericRelation
在Django 1.9或更低版本上无效。
在related_query_name now supports app label and class interpolation using the '%(app_label)s' and '%(class)s' strings合并后,在Django 1.10中添加了fix。