标签:generic create retrieve 逻辑 bsp ret mod elm eve
定义:可以将一系列逻辑相关的动作放到一个类中
ViewSetMixin:
as_view:可以在url设置的时候手动指明请求方法对应的请求方法名
例如:{“get”:“last”}
ViewSet:继承ViewSetMixin,APIView
GenericVIewSet:继承ViewSetMixin和GenericAPIVIew
ModelViewSet:继承GenericVIewSet,同时继承ListModelMixin、RetrieveModelMixin、CreateModelMixin、UpdateModelMixin、DestoryModelMixin
接受请求后,代码更简练的返回响应。
标签:generic create retrieve 逻辑 bsp ret mod elm eve
原文地址:https://www.cnblogs.com/bestsong/p/11142299.html