在 django sweetpie 中过滤 GenericForeignKeyField
Posted
技术标签:
【中文标题】在 django sweetpie 中过滤 GenericForeignKeyField【英文标题】:Filter GenericForeignKeyField in django tastypie 【发布时间】:2012-12-01 17:55:47 【问题描述】:在 django-tastypie 资源中使用 GenericForeignKeyField,有没有办法根据 content_type 过滤结果?我想向 Meta 类添加一个过滤器,就像使用常规字段一样,但我无法使用 GenericForeignKeyField 来做到这一点。
【问题讨论】:
【参考方案1】:通过将此方法添加到我的资源中,我最终使内容类型脱水
def dehydrate(self,bundle):
bundle.data['type'] = bundle.obj.content_type
return bundle
然后我在客户端过滤了数据。这不是一个理想的解决方案,但现在已经足够了
【讨论】:
以上是关于在 django sweetpie 中过滤 GenericForeignKeyField的主要内容,如果未能解决你的问题,请参考以下文章