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 ModelResource 类中创建两组字段的方法。我希望一组返回模型的所有字段,而另一组只返回字段的子集。我可以创建两个 ModelResource 类,每个类都有两个字段集,但是,我正在寻找更好的解决方案
通过将此方法添加到我的资源中,我最终使内容类型脱水
def dehydrate(self,bundle): bundle.data['type'] = bundle.obj.content_type return bundle
然后我在客户端过滤了数据。它不是一个理想的解决方案,但现在已经足够了