view.py
JavaScript
x
18
18
1
class User_ListView(APIView):
2
permission_classes = [DjangoCustomModelPermissions]
3
queryset = User.objects.none()
4
5
def get(self, request):
6
param1 = request.query_params.get('param1',None)
7
param2 = request.query_params.get('param2',None)
8
9
try:
10
db_data = User.objects.get(param1 = param1, param2=param2)
11
serializer = User_Serializer(db_data)
12
return Response(serializer.data)
13
except Closing_Stock_List_Trans.DoesNotExist:
14
db_data = User.objects.none()
15
serializer = User_Serializer(db_data)
16
return Response(serializer.data)
17
18
serializer.py
JavaScript
1
5
1
class User_Serializer(serializers.ModelSerializer):
2
class Meta:
3
model = User
4
fields = '__all__'
5
I want the serializer to return an empty response when no User DoesNotExist in the User Model, however I get the following error. How can i achieve this?
JavaScript
1
4
1
AttributeError: Got AttributeError when attempting to get a value for field `param1` on serializer `User_Serializer`.
2
The serializer field might be named incorrectly and not match any attribute or key on the `QuerySet` instance.
3
Original exception text was: 'QuerySet' object has no attribute 'param1'.
4
Advertisement
Answer
You are trying to serialize a queryset, so you need to add many=True
to the serialization.
JavaScript
1
6
1
.
2
except Closing_Stock_List_Trans.DoesNotExist:
3
db_data = User.objects.none()
4
serializer = User_Serializer(db_data, many=True)
5
return Response(serializer.data)
6