Django 'Request' 对象没有属性 'user_id'
Django 'Request' object has no attribute 'user_id'
在我的 urls.py
我有:
url(r'^dashboard/users/(?P<user_id>[0-9]+)/products/$', views.UserProductsList.as_view())
在views.py
class UserProductsList(generics.ListCreateAPIView):
def get_queryset(self):
if self.request.user_id:
return UserProducts.objects.filter(user_id=self.request.user_id).order_by('id')
else:
return UserProducts.objects.all().order_by('id')
我希望能够这样访问我的 api:
http://localhost:8000/dashboard/users/10/products
应该列出该用户的所有产品,并且
http://localhost:8000/dashboard/users/10/products/1
应该 return product_id 1 of user_id 10
如何实现这个流程。
Note: I'm using Django rest framework in this setup
你可以做到
class UserProductsList(generics.ListCreateAPIView):
def get_queryset(self):
if self.kwargs['user_id']:
return UserProducts.objects.filter(user_id=self.kwargs['user_id']).order_by('id')
else:
return UserProducts.objects.all().order_by('id')
参考doc
请像这样更新您的代码..
class UserProductsList(generics.ListCreateAPIView):
def get_queryset(self):
if self.request.user.id:
return
或者
class UserProductsList(generics.ListCreateAPIView):
def get_queryset(self):
if self.kwargs['user_id']:
return
在我的 urls.py
我有:
url(r'^dashboard/users/(?P<user_id>[0-9]+)/products/$', views.UserProductsList.as_view())
在views.py
class UserProductsList(generics.ListCreateAPIView):
def get_queryset(self):
if self.request.user_id:
return UserProducts.objects.filter(user_id=self.request.user_id).order_by('id')
else:
return UserProducts.objects.all().order_by('id')
我希望能够这样访问我的 api:
http://localhost:8000/dashboard/users/10/products
应该列出该用户的所有产品,并且
http://localhost:8000/dashboard/users/10/products/1
应该 return product_id 1 of user_id 10
如何实现这个流程。
Note: I'm using Django rest framework in this setup
你可以做到
class UserProductsList(generics.ListCreateAPIView):
def get_queryset(self):
if self.kwargs['user_id']:
return UserProducts.objects.filter(user_id=self.kwargs['user_id']).order_by('id')
else:
return UserProducts.objects.all().order_by('id')
参考doc
请像这样更新您的代码..
class UserProductsList(generics.ListCreateAPIView):
def get_queryset(self):
if self.request.user.id:
return
或者
class UserProductsList(generics.ListCreateAPIView):
def get_queryset(self):
if self.kwargs['user_id']:
return