I am building a Django application that exposes a REST API by which users can query my application's models. I'm following the instructions here.
My Route looks like this in myApp's url.py:
from rest_framework import routers
router = routers.DefaultRouter() router.register(r'myObjects/(?P<id>\d+)/?$', views.MyObjectsViewSet)
url(r'^api/', include(router.urls)),
My Model looks like this:
class MyObject(models.Model):
name = models.TextField()
My Serializer looks like this:
class MyObjectSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = MyObject
fields = ('id', 'name',)
My Viewset looks like this:
class MyObjectsViewSet(viewsets.ViewSet):
def retrieve(self,request,pk=None):
queryset = MyObjects.objects.get(pk=pk).customMyObjectList()
if not queryset:
return Response(status=status.HTTP_400_BAD_REQUEST)
else:
serializer = MyObjectSerializer(queryset)
return Response(serializer.data,status=status.HTTP_200_OK)
When I hit /api/myObjects/60/ I get the following error:
base_name
argument not specified, and could not automatically determine the name from the viewset, as it does not have a.model
or.queryset
attribute.
I understand from here that I need a base_name parameter on my route. But from the docs, it is unclear to me what that value of that base_name parameter should be. Can someone please tell me what the route should look like with the base_name?
Maybe you just need to set the
base_name
parameter for your router with the name of the object:MyObject
, in your case.http://www.django-rest-framework.org/api-guide/routers/#Usage
Let me explain, why we need an base_name in the first place and then let's go into the possible value of base_name.
If you ever used the Django urls without the rest-framework (DRF) before, you would've specified it like this:
Here, if you see, there is a name parameter which used to identify the url in the current namespace (which is app).
This is exactly what django-rest-framework trying to do automatically, since the drf knows whether the view is list or detail (because of viewset). it just need to append some prefix to differentiate the urls. That's the purpose of base_name (prefix).
In most scenario, you can give the url or resource name as base_name. In your case, base_name=myobject. DRF will generate base_name + view_type as the name parameter like myobject_list & myobject_detail.
Note: Usually, base_name will be automatically obtained from the queryset field (from view), since it's same for all view types in a viewset. But if you specify, get_queryset method instead of queryset, it possibly means you've different queryset for different view types (like list, detail). So, DRF will ask you to specify a common base_name for all the view types for a resource.
simply mention this,
like this,
in your corresponding Viewset in views.py instead of mentioning under
def retrieve()...
its worked for me :)
this is a useful answer, read for the details.
tl;dr
It is used as the base name of the generated URL patterns (e.g., 'myobject-detail' or 'myobject-list').
An alternative solution might be to use a ModelViewSet which will derive the basename automatically from the model.
Just make sure and tell it which model to use:
Try doing this in your urls.py. The third parameter 'Person' can be anything you want.