django의 asview 방법 구현 분석

8134 단어
django의 클래스 보기는 자동으로 지정한 방법을 찾는 기능을 가지고 있으며 호출을 통해 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

    좋은 웹페이지 즐겨찾기