AttributeError when attempting to get a value for field `title` on serializer `PostSerializer`.
The serializer field might be named incorrectly and not match any attribute or key on the `Response` instance.
Original exception text was: 'Response' object has no attribute 'title'.
Делал тест для api и вот это вывело.
https://pastebin.com/7ACiwxnK
response = self.client.get(url) serializer_data = PostSerializer([response], many=True).data расскажи мне что делает этот код ?
response - делает запрос на api ('api/posts/') serializer_data = список объектов
что приходит в response?
на строчке serializer_data всё завершается ошибкой
https://www.vinta.com.br/blog/2017/how-i-test-my-drf-serializers/
видимо план был так сделать? serializer_data = PostSerializer(self.blog).data
типо такого, да
Обсуждают сегодня