Django-类视图

匿名 (未验证) 提交于 2019-12-02 23:36:01

1 类视图引入
以函数的方式定义的视图称为函数视图,函数视图便于理解。但是遇到一个视图对应的路径提供了多种不同HTTP请求方式的支持时,便需要在一个函数中编写不同的业务逻辑,代码可读性与复用性都不佳。

def register(request):
“”“处理注册”""

# 获取请求方法,判断是GET/POST请求 if request.method == 'GET':     # 处理GET请求,返回注册页面     return render(request, 'register.html') else:     # 处理POST请求,实现注册逻辑     return HttpResponse('这里实现注册逻辑')

在Django中也可以使用类来定义一个视图,称为类视图。

使用类视图可以将视图对应的不同请求方式以类中的不同方法来区别定义。如下所示

from django.views.generic import View

class RegisterView(View):
“”“类视图:处理注册”""

def get(self, request):     """处理GET请求,返回注册页面"""     return render(request, 'register.html')  def post(self, request):     """处理POST请求,实现注册逻辑"""     return HttpResponse('这里实现注册逻辑')

类视图的好处:

代码可读性好
类视图相对于函数视图有更高的复用性, 如果其他地方需要用到某个类视图的某个特定逻辑,直接继承该类视图即可
2 类视图使用
定义类视图需要继承自Django提供的父类View,可使用from django.views.generic import View或者from django.views.generic.base import View 导入,定义方式如上所示。

配置路由时,使用类视图的as_view()方法来添加。

urlpatterns = [
# 视图函数:注册
# url(r’^register/’, views.RegisterView.as_view(), name=‘register’),
]
3 类视图原理
@classonlymethod
def as_view(cls, **initkwargs):
“”"
Main entry point for a request-response process.
“”"
…省略代码…

    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         # 调用dispatch方法,按照不同请求方式调用不同请求方法         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,     # 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)

4 类视图使用装饰器
为类视图添加装饰器,可以使用两种方法。

为了理解方便,我们先来定义一个为函数视图准备的装饰器(在设计装饰器时基本都以函数视图作为考虑的被装饰对象),及一个要被装饰的类视图。

def my_decorator(func):
def wrapper(request, *args, **kwargs):
print(‘自定义装饰器被调用了’)
print(‘请求路径%s’ % request.path)
return func(request, *args, **kwargs)
return wrapper

class DemoView(View):
def get(self, request):
print(‘get方法’)
return HttpResponse(‘ok’)

def post(self, request):     print('post方法')     return HttpResponse('ok')

4.1 在URL配置中装饰
urlpatterns = [
url(r’^demo/$’, my_decorate(DemoView.as_view()))
]
此种方式最简单,但因装饰行为被放置到了url配置中,单看视图的时候无法知道此视图还被添加了装饰器,不利于代码的完整性,不建议使用。

此种方式会为类视图中的所有请求方法都加上装饰器行为(因为是在视图入口处,分发请求方式前)。

4.2 在类视图中装饰
在类视图中使用为函数视图准备的装饰器时,不能直接添加装饰器,需要使用method_decorator将其转换为适用于类视图方法的装饰器。

method_decorator装饰器使用name参数指明被装饰的方法

为全部请求方法添加装饰器

@method_decorator(my_decorator, name=‘dispatch’)
class DemoView(View):
def get(self, request):
print(‘get方法’)
return HttpResponse(‘ok’)

def post(self, request):     print('post方法')     return HttpResponse('ok')

为特定请求方法添加装饰器

@method_decorator(my_decorator, name=‘get’)
class DemoView(View):
def get(self, request):
print(‘get方法’)
return HttpResponse(‘ok’)

def post(self, request):     print('post方法')     return HttpResponse('ok')

如果需要为类视图的多个方法添加装饰器,但又不是所有的方法(为所有方法添加装饰器参考上面例子),可以直接在需要添加装饰器的方法上使用method_decorator,如下所示

from django.utils.decorators import method_decorator

为特定请求方法添加装饰器

class DemoView(View):

@method_decorator(my_decorator)  # 为get方法添加了装饰器 def get(self, request):     print('get方法')     return HttpResponse('ok')  @method_decorator(my_decorator)  # 为post方法添加了装饰器 def post(self, request):     print('post方法')     return HttpResponse('ok')  def put(self, request):  # 没有为put方法添加装饰器     print('put方法')     return HttpResponse('ok')

5 类视图Mixin扩展类
使用面向对象多继承的特性,可以通过定义父类(作为扩展类),在父类中定义想要向类视图补充的方法,类视图继承这些扩展父类,便可实现代码复用。

定义的扩展父类名称通常以Mixin结尾。

举例如下:

class ListModelMixin(object):
“”"
list扩展类
“”"
def list(self, request, *args, **kwargs):

class CreateModelMixin(object):
“”"
create扩展类
“”"
def create(self, request, *args, **kwargs):

class BooksView(CreateModelMixin, ListModelMixin, View):
“”"
同时继承两个扩展类,复用list和create方法
“”"
def get(self, request):
self.list(request)

def post(self, request):     self.create(request)     ...

class SaveOrderView(CreateModelMixin, View):
“”"
继承CreateModelMixin扩展类,复用create方法
“”"
def post(self, request):
self.create(request)

转载请标明出处:Django-类视图
文章来源: https://blog.csdn.net/qq_42370150/article/details/90718657
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!