ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

rest-framework之APIView

2022-01-19 20:35:30  阅读:270  来源: 互联网

标签:request self args APIView rest framework kwargs method view


rest-framework之APIView

一 安装djangorestframework

方式一:pip3 install djangorestframework

方式二:pycharm图形化界面安装

方式三:pycharm命令行下安装(装在当前工程所用的解释器下)

二 djangorestframework的APIView分析

复制代码

 @classmethod
  def as_view(cls, **initkwargs):
      """
      Store the original class on the view function.

      This allows us to discover information about the view when we do URL
      reverse lookups. Used for breadcrumb generation.
      """
      if isinstance(getattr(cls, 'queryset', None), models.query.QuerySet):
          def force_evaluation():
              raise RuntimeError(
                  'Do not evaluate the `.queryset` attribute directly, '
                  'as the result will be cached and reused between requests. '
                  'Use `.all()` or call `.get_queryset()` instead.'
              )
          cls.queryset._fetch_all = force_evaluation

      view = super(APIView, cls).as_view(**initkwargs)
      view.cls = cls
      view.initkwargs = initkwargs

      # Note: session based authentication is explicitly CSRF validated,
      # all other authentication is CSRF exempt.
      return csrf_exempt(view)

复制代码

复制代码

 def dispatch(self, request, *args, **kwargs):
      """
      `.dispatch()` is pretty much the same as Django's regular dispatch,
      but with extra hooks for startup, finalize, and exception handling.
      """
      self.args = args
      self.kwargs = kwargs
      request = self.initialize_request(request, *args, **kwargs)
      self.request = request
      self.headers = self.default_response_headers # deprecate?

      try:
          self.initial(request, *args, **kwargs)

          # Get the appropriate handler method
          if request.method.lower() in self.http_method_names:
              handler = getattr(self, request.method.lower(),
                                self.http_method_not_allowed)
          else:
              handler = self.http_method_not_allowed

          response = handler(request, *args, **kwargs)

      except Exception as exc:
          response = self.handle_exception(exc)

      self.response = self.finalize_response(request, response, *args, **kwargs)
      return self.response

复制代码

复制代码

    def initialize_request(self, request, *args, **kwargs):
      """
      Returns the initial request object.
      """
      parser_context = self.get_parser_context(request)

      return Request(
          request,
          parsers=self.get_parsers(),
          authenticators=self.get_authenticators(),
          negotiator=self.get_content_negotiator(),
          parser_context=parser_context
      )

复制代码

复制代码

    def initial(self, request, *args, **kwargs):
      """
      Runs anything that needs to occur prior to calling the method handler.
      """
      self.format_kwarg = self.get_format_suffix(**kwargs)

      # Perform content negotiation and store the accepted info on the request
      neg = self.perform_content_negotiation(request)
      request.accepted_renderer, request.accepted_media_type = neg

      # Determine the API version, if versioning is in use.
      version, scheme = self.determine_version(request, *args, **kwargs)
      request.version, request.versioning_scheme = version, scheme

      # Ensure that the incoming request is permitted
      self.perform_authentication(request)
      self.check_permissions(request)
      self.check_throttles(request)

复制代码

三 djangorestframework的Request对象简单介绍

img

 

标签:request,self,args,APIView,rest,framework,kwargs,method,view
来源: https://www.cnblogs.com/thaimj1314520/p/15823956.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有