Difference between APIView class and viewsets class?

前端 未结 4 1415
死守一世寂寞
死守一世寂寞 2021-02-03 22:36

What are the difference between APIView class and viewsets class ? I am following Django REST-framework official documentation. I think it lac

4条回答
  •  忘掉有多难
    2021-02-03 23:30

    Viewsets and APIView both allow us to write logic for end point but Viewsets dont define functions which map to HTTP methods instead map to common API object actions

提交回复
热议问题