摘要:
1.解析器的作用 根据请求头 content-type 选择对应的解析器对请求体内容进行处理。 有application/json,x-www-form-urlencoded,form-data等格式, 可以自己自行配置支持或者不支持哪种格式, 一般在实际的生产环境中用json一种数据格式进行数据交 阅读全文
摘要:
1.基于url的get传参方式(不推荐) 1.1:通过自定义版本控制类,获取版本 from django.shortcuts import render,HttpResponse from rest_framework.views import APIView class ParamVersion( 阅读全文