dog-2 / blog_gitalk

this is a repository stores comments of my blog using Gitalk
0 stars 0 forks source link

Django REST Framework 学习笔记(二):请求模块 request | 雪泥鴻爪 #12

Open dog-2 opened 4 years ago

dog-2 commented 4 years ago

https://dog.wtf/tech/drf-learning-notes-2-the-request-module/

Title(EN): Django REST Framework Learning Notes (2): the request module Author: dog2 DRF请求生命周期流程 根据应用中urls.py,走as_view方法,但是视图类没有该方法,所以请求走的是APIView的as_view方法 在APIView的as_view调用父类(django原生View)的as_v