Django Rest Framework - “detail”: “Not found.”
问题 Hi when doing this request: groups/25010a31-fc5b-47c8-9c5c-d740e5743f52/members/4/ - I get "detail": "Not found" However, if you look in the queryset I have printed the Groupmember instance and this ends up printing out that particular instance so clearly it exists? View: class MemberDetail(mixins.RetrieveModelMixin, mixins.DestroyModelMixin, mixins.UpdateModelMixin, generics.GenericAPIView): serializer_class = GroupMembersSerializer lookup_field = "user_id" lookup_url_kwarg = "uuid" def get