如果需要像APIView 那样返回自定义的response
obj = self.get_object(pk=pk) if not obj: return Response(data={"msg": "没有此课程信息"}, status=status.HTTP_404_NOT_FOUND)
是否就重写perform_create、perform_update的方法就行了?
应该是重写 list ,create, update这些方法吧,这些方法里才返回Response对象