Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 django-tastypie 资源中使用 GenericForeignKeyField,有没有办法根据 content_type 过滤结果?我想向 Meta 类添加一个过滤器,就像使用常规字段一样,但我无法使用 GenericForeignKeyField 来做到这一点。
通过将此方法添加到我的资源中,我最终使内容类型脱水
def dehydrate(self,bundle): bundle.data['type'] = bundle.obj.content_type return bundle
然后我在客户端过滤了数据。它不是一个理想的解决方案,但现在已经足够了