我在Django应用程序中有以下模型:如何获取此模型中任何选定content_object的"name"属性,并将其显示在modelAdmin类的list_display中,而不仅仅显示GenericForeign Key对象的键。求你了,我真的需要帮助。
class Checkout(models.Model):
checkout_date = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
check_in_complete = models.BooleanField(default=False, editable=False)
content_type = models.ForeignKey(ContentType,
limit_choices_to={"model__in": ('Facilitator', 'Enumerator', 'Tutor')})
object_id = models.PositiveIntegerField(verbose_name='Receiver')
content_object = GenericForeignKey('content_type', 'object_id')
由于GenericForeignKey
不是一个普通字段对象,您不能在过滤器中使用它:
Checkout.objects.filter(content_object=other_obj) # this will fail
但是,如果您想使用GenericForeignKey
访问与您的签出关联的对象的name
属性,您可以按照以下方式进行:
name = checkout_obj.content_object.name