Django的FBV和CB Django的FBV和CBV

Django的FBV和CBV

FBV

FBV(function base views) 就是在视图里使用函数处理请求。html

在以前django的学习中,咱们一直使用的是这种方式,因此再也不赘述。python

CBV

CBV(class base views) 就是在视图里使用类处理请求。django

Python是一个面向对象的编程语言,若是只用函数来开发,有不少面向对象的优势就错失了(继承、封装、多态)。因此Django在后来加入了Class-Based-View。可让咱们用类写View。这样作的优势主要下面两种:编程

  1. 提升了代码的复用性,可使用面向对象的技术,好比Mixin(多继承)
  2. 能够用不一样的函数针对不一样的HTTP方法处理,而不是经过不少if判断,提升代码可读性

使用class-based views

若是咱们要写一个处理GET方法的view,用函数写的话是下面这样服务器

from django.http import HttpResponse
  
def my_view(request):
     if request.method == 'GET':
            return HttpResponse('OK')

若是用class-based view写的话,就是下面这样app

复制代码
from django.http import HttpResponse
from django.views import View
  
class MyView(View):

      def get(self, request):
            return HttpResponse('OK')
复制代码

Django的url是将一个请求分配给可调用的函数的,而不是一个class。针对这个问题,class-based view提供了一个as_view()静态方法(也就是类方法),调用这个方法,会建立一个类的实例,而后经过实例调用dispatch()方法,dispatch()方法会根据request的method的不一样调用相应的方法来处理request(如get() , post()等)。到这里,这些方法和function-based view差很少了,要接收request,获得一个response返回。若是方法没有定义,会抛出HttpResponseNotAllowed异常。编程语言

在url中,就这么写:ide

复制代码
# urls.py
from django.conf.urls import url
from myapp.views import MyView
  
urlpatterns = [
     url(r'^index/$', MyView.as_view()),
]
复制代码

咱们能够看看as_view这个方法的源码函数

复制代码
@classonlymethod
    def as_view(cls, **initkwargs):
        """
        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):
            self = cls(**initkwargs)
            if hasattr(self, 'get') and not hasattr(self, 'head'):
                self.head = self.get
            self.request = request
            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
复制代码

能够看到as_view最终的执行结果就是返回了一个view函数,而在url中其实咱们就是在调用这个函数,这个函数先是实例化出了一个View类的对象,最后返回的是这个对象的dispatch方法的执行结果post

那么这个dispatche方法又干了什么呢

复制代码
    def dispatch(self, request, *args, **kwargs):
        # Try to dispatch to the right method; if a method doesn't exist,
        # defer to the error handler. Also defer to the error handler if the
        # request method isn't on the approved list.
        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
        return handler(request, *args, **kwargs)
复制代码

这个方法其实就是判断咱们的请求方法,并根据请求方法执行相应的方法对应的函数

类的属性能够经过两种方法设置,第一种是常见的Python的方法,能够被子类覆盖

复制代码
from django.http import HttpResponse
from django.views import View
  
class GreetingView(View):
    name = "yuan"
    def get(self, request):
         return HttpResponse(self.name)
  
# You can override that in a subclass
  
class MorningGreetingView(GreetingView):
    name= "alex"
复制代码

第二种方法,你也能够在url中指定类的属性:

在url中设置类的属性Python

urlpatterns = [
   url(r'^index/$', GreetingView.as_view(name="egon")),
]

使用Mixin

我以为要理解django的class-based-view(如下简称cbv),首先要明白django引入cbv的目的是什么。在django1.3以前,generic view也就是所谓的通用视图,使用的是function-based-view(fbv),亦即基于函数的视图。有人认为fbv比cbv更pythonic,窃觉得否则。python的一大重要的特性就是面向对象。而cbv更能体现python的面向对象。cbv是经过class的方式来实现视图方法的。class相对于function,更能利用多态的特定,所以更容易从宏观层面上将项目内的比较通用的功能抽象出来。关于多态,很少解释,有兴趣的同窗本身Google。总之能够理解为一个东西具备多种形态(的特性)。cbv的实现原理经过看django的源码就很容易明白,大致就是由url路由到这个cbv以后,经过cbv内部的dispatch方法进行分发,将get请求分发给cbv.get方法处理,将post请求分发给cbv.post方法处理,其余方法相似。怎么利用多态呢?cbv里引入了mixin的概念。Mixin就是写好了的一些基础类,而后经过不一样的Mixin组合成为最终想要的类。

因此,理解cbv的基础是,理解Mixin。Django中使用Mixin来重用代码,一个View Class能够继承多个Mixin,可是只能继承一个View(包括View的子类),推荐把View写在最右边,多个Mixin写在左边。

关于csrf_token的装饰器

咱们知道当咱们向django发送post请求时,有一个中间件会检验csrf_token,若是咱们不想使用它能够将它注释,一样咱们也能够经过装饰器来避免发送POST请求时被服务器拒绝

复制代码
from django.shortcuts import render, HttpResponse
from django.views import View
# Create your views here.
from django.views.decorators.csrf import csrf_exempt, csrf_protect
from django.utils.decorators import method_decorator


@csrf_exempt  # 避免csrf验证
def foo(request):
    return HttpResponse("foo")

# 方式1
# @method_decorator(csrf_exempt, name="dispatch")
class IndexView(View):
    # 方式2
    @method_decorator(csrf_exempt)
    def dispatch(self, request, *args, **kwargs):
        print("hello world")
        # 执行父类的dispatch方法
        res = super(IndexView, self).dispatch(request, *args, **kwargs)
        return res

    def get(self, request, *args, **kwargs):
        return HttpResponse("index")
    
    def post(self, request, *args, **kwargs):
        return HttpResponse("post index")

    def delete(self, request):
        return HttpResponse("delete index")    
复制代码

能够看到FBV和CBV的形式均可以经过装饰器的形式来实现,还有一个csrf_protect是能够在中间件被注释时也能够进行验证

相关文章
相关标签/搜索