我对Django& amp; Tastypie。我想只返回查询中的一个对象。我几乎尝试了一切,似乎无法找到解决方案。以下是我的代码:
class ProfileResource(ModelResource):
person = fields.ForeignKey(UserResource, 'user', full=True)
class Meta:
queryset = Person.objects.all()
resource_name = 'profile'
authentication = BasicAuthentication()
authorization = DjangoAuthorization()
serializer = Serializer(formats=['json'])
现在我遇到问题的部分是如何使用request.user
从单个资源返回单个用户对象。
答案 0 :(得分:4)
如果您只想显示一个资源,我可能会创建一个新的资源视图(名为my_profile),该视图将使用kwargs中的用户调用普通详细信息视图并删除其他网址:
from django.conf.urls import url
from tastypie.utils import trailing_slash
class ProfileResource(ModelResource):
...
def base_urls(self):
return [
url(r"^(?P<resource_name>%s)%s$" % (self._meta.resource_name, trailing_slash()), self.wrap_view('dispatch_my_profile'), name="api_dispatch_my_profile")
]
def dispatch_my_profile(self, request, **kwargs):
kwargs['user'] = request.user
return super(ProfileResource, self).dispatch_detail(request, **kwargs)