标签: django tastypie
我有这样的资源:
class User(ModelResource): friends = fields.ToManyField(UserResource, ....blah blah)
朋友不是模型用户中的字段
但我希望这些朋友能够被列入api。
怎么做?