use strict是使用严格模式
require是导入的意思
post 创建
get 获取
delete 删除
put 更新
打开
:~/下载/Postman$ ./Postman
FBV:Function-base views 基于函数的视图
CBV:Class-based views 基于类的视图
什么是反射
通过字符串映射object对象的方法或者属性
反射的方法
getattr()
函数用于返回一个对象属性值。
hasattr()
函数用于判断对象是否包含对应的属性
setattr()
setattr() 函数对应函数 getattr(),用于设置属性值,该属性必须存在。
delattr()
delattr 函数用于删除属性。
中间件的五个方法?
process_request
process_view
process_response
process_exception
process_render_template
RESTful规范:
https://blog.csdn.net/qq_33961117/article/details/84944632
http://www.mamicode.com/info-detail-2371881.html
DRF认证流程:
1.dispatch方法里面封装了request
2.调用initial
3.调用perform_authentication()
4.取user方法
5.user方法里面调用了认证对象
6.遍历认证
rest_framework-匿名用户配置
网友评论