Django RESTful

孔飞翔
2023-12-01

Restful是一种规范,把一切都看作是资源,前后端进行分离。

RESTful 10条规范

200 OK - [GET]:服务器成功返回用户请求的数据,该操作是幂等的(Idempotent)。
201 CREATED - [POST/PUT/PATCH]:用户新建或修改数据成功。
202 Accepted - []:表示一个请求已经进入后台排队(异步任务)
204 NO CONTENT - [DELETE]:用户删除数据成功。
400 INVALID REQUEST - [POST/PUT/PATCH]:用户发出的请求有错误,服务器没有进行新建或修改数据的操作,该操作是幂等的。
401 Unauthorized - [
]:表示用户没有权限(令牌、用户名、密码错误)。
403 Forbidden - [] 表示用户得到授权(与401错误相对),但是访问是被禁止的。
404 NOT FOUND - [
]:用户发出的请求针对的是不存在的记录,服务器没有进行操作,该操作是幂等的。
406 Not Acceptable - [GET]:用户请求的格式不可得(比如用户请求JSON格式,但是只有XML格式)。
410 Gone -[GET]:用户请求的资源被永久删除,且不会再得到的。
422 Unprocesable entity - [POST/PUT/PATCH] 当创建一个对象时,发生一个验证错误。
500 INTERNAL SERVER ERROR - [*]:服务器发生错误,用户将无法判断发出的请求是否成功。
更多看这里:http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html

  • 错误处理,状态码是4xx时,应返回错误信息,error当做key。

{
error: "Invalid API key"
}

  • 返回结果,针对不同操作,服务器向用户返回的结果应该符合以下规范。

GET /collection:返回资源对象的列表(数组)
GET /collection/resource:返回单个资源对象
POST /collection:返回新生成的资源对象
PUT /collection/resource:返回完整的资源对象
PATCH /collection/resource:返回完整的资源对象
DELETE /collection/resource:返回一个空文档

  • Hypermedia API,RESTful API最好做到Hypermedia,即返回结果中提供链接,连向其他API方法,使得用户不查文档,也知道下一步应该做什么。

{"link": {
"rel": "collection https://www.example.com/zoos",
"href": "https://api.example.com/zoos",
"title": "List of zoos",
"type": "application/vnd.yourformat+json"
}}

Django中的CBV

Django的CBV原理

Django中的CBV执行分发功能的函数是dispatch。
基于类视图的路由继承Django中的一个View类,并且继承了dispatch方法,基于反射原理来执行类中的方法:

from django.views import View
# 新建一个类继承View
class DogView(View):
    def dispatch(self, request, *args, **kwargs):
        # Try to dispatch to the right method; if a method doesn't exist,
        # defer to the error handler. Also defer to the error handler if the
        # request method isn't on the approved list.
        if request.method.lower() in self.http_method_names:
            handler = getattr(self, request.method.lower(), 
                              self.http_method_not_allowed)
    else:
        handler = self.http_method_not_allowed
    return handler(request, *args, **kwargs)

    def get(self, request, *args, **kwargs):
        print("这是GET方法")

首先将request请求的method进行小写(网络请求的方法都是大写的),如GET,POST,然后通过getattr(object, name[, default])来判断是否有这个函数,有就返回函数对象,没有则抛出异常。在本例程中如果浏览器发送了GET请求,则dispatch中判断有get(注意是小写!!!)方法,则会执行handler = (DogView, get, DogView.http_method_not_allowed),第三个参数是如果getattr中没有查询的方法或者属性,就返回第三个参数。最终dispatch返回了handler()(加括号表示执行),即执行get方法。

Django的RESTful框架

Django的RESTful框架是djangorestframework,下载

pip install djangorestframework

以下是一个用户认证系统

from rest_framework.views import APIView
from rest_framework import exceptions

class MyAuthentication(object):
    def authenticate(self, request):
        token = request._request.GET.get('token')
        if not token:
            raise exceptions.AuthenticationFailed('用户认证失败')
        return ('Caesar', None)

    def authenticate_header(self, cls):
        pass

class DogView(APIView):
    authentication_classes = [MyAuthentication,]
    # self.dispatch
    def get(self, request, *arg, **kwargs):
        ret = {
            'code': 1000,
            'msg': 'xxx'
        }
        return HttpResponse(json.dumps(ret), status=201)

    def post(self, request, *args, **kwargs):
        return HttpResponse('创建Dog')

    def put(self, request, *args, **kwargs):
        return HttpResponse('更新Dog')

    def delete(self, request, *args, **kwargs):
        return HttpResponse('删除Dog')
 类似资料:

相关阅读

相关文章

相关问答