在django tastypie中过滤GenericForeignKeyField

时间:2012-12-13 19:08:01

标签: django tastypie

在django-tastypie资源中使用GenericForeignKeyField,有没有办法根据content_type过滤结果?我想在Meta类中添加一个过滤器,就像使用常规字段一样,但我无法使用GenericForeignKeyField。

1 个答案:

答案 0 :(得分:0)

我最终通过将此方法添加到我的资源

来使内容类型脱水
def dehydrate(self,bundle):
    bundle.data['type'] = bundle.obj.content_type
    return bundle   

然后我在客户端过滤了数据。它不是一个理想的解决方案,但现在已经足够好了