django의 asview 방법 구현 분석
as_view()
방법으로 실현됩니다urls.py
from meduo_mall.demo import views
urlpatterns = [
url(r'register/$', views.Demo.as_view())
]
views.py
from django.views.generic import View
class Demo(View): def get(self, request): return HttpResponse('get page') def post(self, request): return HttpResponse('post page')
왜
as_view
지정한 방법과 자동으로 일치할 수 있는지,원본 먼저 보기
@classonlymethod
def as_view(cls, **initkwargs): # view """ Main entry point for a request-response process. """ for key in initkwargs: if key in cls.http_method_names: raise TypeError("You tried to pass in the %s method name as a " "keyword argument to %s(). Don't do that." % (key, cls.__name__)) if not hasattr(cls, key): raise TypeError("%s() received an invalid keyword %r. as_view " "only accepts arguments that are already " "attributes of the class." % (cls.__name__, key)) def view(request, *args, **kwargs): # : , dispatch self = cls(**initkwargs) # cls , cls (Demo) if hasattr(self, 'get') and not hasattr(self, 'head'): self.head = self.get self.request = request # request, args, kwargs self.args = args self.kwargs = kwargs return self.dispatch(request, *args, **kwargs) # , view.view_class = cls view.view_initkwargs = initkwargs # take name and docstring from class update_wrapper(view, cls, updated=()) # and possible attributes set by decorators # like csrf_exempt from dispatch update_wrapper(view, cls.dispatch, assigned=()) return view def dispatch(self, request, *args, **kwargs): # Try to dispatch to the right method; if a method doesn't exist, if request.method.lower() in self.http_method_names: # , http_method_names=['get', 'post'] handler = getattr(self, request.method.lower(), self.http_method_not_allowed) # else: handler = self.http_method_not_allowed return handler(request, *args, **kwargs) #
간략판
@classonlymethod
def as_view(cls, **initkwargs): # view """ Main entry point for a request-response process. """ def view(request, *args, **kwargs): # : , dispatch self = cls(**initkwargs) # cls , cls (Demo) if hasattr(self, 'get') and not hasattr(self, 'head'): self.head = self.get self.request = request # request, args, kwargs self.args = args self.kwargs = kwargs return self.dispatch(request, *args, **kwargs) # , return view def dispatch(self, request, *args, **kwargs): # Try to dispatch to the right method; if a method doesn't exist, if request.method.lower() in self.http_method_names: # , http_method_names=['get', 'post'] handler = getattr(self, request.method.lower(), self.http_method_not_allowed) # else: handler = self.http_method_not_allowed return handler(request, *args, **kwargs) #
더욱 간소화한다
def as_view(): # + view # ... def view(): # # request, args, kwargs ... return dispatch() # return view def dispatch(): # , ... return handler()
호출 순서:asview --> view --> dispatch
as_view
는 사실상 클로즈업이고 그의 역할은 검사 작업을 한 다음에 되돌아오는 view
방법이다.view
방법으로 처리하는 것이다dispatch
방법은 지정한 요청 방법을 찾아 실행dispatch
방법이라는 결론을 얻을 수 있다.전재 대상:https://www.cnblogs.com/ellisonzhang/p/10668486.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.