serializer_class = serializers.WillGoSerializer
def get_queryset(self):
arr = []
for i in models.WillGo.objects.all().values('eventId_id'):
arr.append(i.get('eventId_id'))
return arr
Пишет Got AttributeError when attempting to get a value for field `userId on serializer WillGoSerializer.
The serializer field might be named incorrectly and not match any attribute or key on the int instance.
Original exception text was: 'int' object has no attribute 'userId’.`
get_queryset должен возвращать queryset затем этот queryset используется ты возвращаешь список
Обсуждают сегодня