博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
drf 组件
阅读量:4983 次
发布时间:2019-06-12

本文共 1025 字,大约阅读时间需要 3 分钟。

中间件     request     view     exception     response    render_templatecsrf原理(在这个里面process_view)    except  protect   rest 10个 https://www.cnblogs.com/wupeiqi/aticles/7805382.html 通信协议https  域名 版本 路径 method 过滤  status 返回结果 error  Hypermedia API面向对象3大特性    多态    继承 多继承先左边 广度/深度优先 经典类/新式类    封装 (为了以后打包使用)        相同一堆属性方法封装在类中        构造方法将一部分数据封装到每一个对象里面
middleware 
import jsonfrom django.utils.decorators import method_decoratorfrom django.views.decorators.csrf import csrf_exempt,csrf_protect #免除 保护@csrf_exemptdef uers(request):    user_list = ['a','b']    return HttpResponse(json.dumps(user_list))# cbv里面 直接加到方法无效# 法一class StuView(View):    @method_decorator(csrf_exempt)    def dispatch(self):        print('here')        return HttpResponse()    def get(self):        print('get')        return HttpResponse()# 法二@method_decorator(csrf_exempt,name='dispatch')class StuView(View):    def get(self):        print('get')        return HttpResponse()
csrf_token 装饰器

 

转载于:https://www.cnblogs.com/zhangchen-sx/p/11421558.html

你可能感兴趣的文章
ES6学习之变量的解构赋值
查看>>
PHP 生成图片缩略图函数
查看>>
Boost Bimap示例
查看>>
ESLint 使用入门
查看>>
流水作业调度
查看>>
涨姿势系列之——内核环境下内存映射函数
查看>>
遍历数组批量更新数组里元素的某一项属性
查看>>
github 收藏项目的方法
查看>>
九的余数
查看>>
北京师范大学第十五届ACM决赛-重现赛K Keep In Line ( 字符串模拟实现)
查看>>
(转)C# — WinForm 消息框的使用
查看>>
时间管理(转)
查看>>
Future FutrueTask Callable类源码说明以及原理使用
查看>>
flask 外键关系和多对多查询
查看>>
接收行数,打印平行四边形
查看>>
Linux上coredump调试:call stack栈顶函数地址为0 分析实战
查看>>
Educational Codeforces Round 11——C. Hard Process(YY)
查看>>
0054 Spring MVC的@Controller和@RequestMapping注解
查看>>
C#学习总结
查看>>
python字符串实战
查看>>