在django-tastypie资源中使用GenericForeignKeyField,有没有办法根据content_type过滤结果?我想在Meta类中添加一个过滤器,就像使用常规字段一样,但我无法使用GenericForeignKeyField。
答案 0 :(得分:0)
我最终通过将此方法添加到我的资源
来使内容类型脱水def dehydrate(self,bundle):
bundle.data['type'] = bundle.obj.content_type
return bundle
然后我在客户端过滤了数据。它不是一个理想的解决方案,但现在已经足够好了