Django框架的使用教程--类视图-中间间-模板[六]
类视图
类视图的使用
视图函数
class class_view(View):
"""类视图""" def get(self, request):
return render(request, 'index.html') def post(self, request):
return render(request, 'show.html')
路由
url(r'^class_view/$', views.class_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
# 根据不同的请求函数返回不同的值
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) # http_method_names = ['get', 'post', 'put', 'patch', 'delete', 'head', 'options', 'trace']
类视图使用装饰器
方法一:使用装饰器定义类视图(不推荐使用,只能整个类添加装饰器,不能单独方法添加)
代码
def my_decorator(func):
def without(request, *args, **kwargs):
print('装饰器被调用')
print('路径%s' % request.path)
return func(request, *args, **kwargs) return without class decorator_view(View):
def get(self, request):
print('这是get方法')
return HttpResponse('ok') def post(self, request):
print('这是post方法')
return HttpResponse('ok')
路由
# 直接在URL中使用装饰器
from .views import decorator_view
url(r'^decorator_view/$', views.my_decorator(decorator_view.as_view())),
结果

方法二:使用装饰器定义类视图(可以指定的请求方式)
代码(以下的视图函数名字可以自己定义过)
# 可以指定装饰器的特定请求,如name='get'
@method_decorator(my_decorator, name='dispatch')
class decorator_view(View):
def get(self, request):
print('这是get方法')
return HttpResponse('ok') def post(self, request):
print('这是post方法')
return HttpResponse('ok')
路由
# 直接在URL中使用装饰器
from .views import decorator_view
url(r'^decorator_view/$', views.my_decorator(decorator_view.as_view())),
运行结果

方法三:使用装饰器定义类视图(定义方法的类装饰器)
代码
class decorator_view(View):
# 给get添加装饰器
@method_decorator(my_decorator)
def get(self, request):
print('这是get方法')
return HttpResponse('ok') # 给post添加装饰器
@method_decorator(my_decorator)
def post(self, request):
print('这是post方法')
return HttpResponse('ok')
路由
# 直接在URL中使用装饰器
from .views import decorator_view
url(r'^decorator_view/$', views.my_decorator(decorator_view.as_view())),
运行(postman测试)

中间件
在子应用工程目录中新建一个middleware.py文件
middleware.py(在调试模式下,中间件被调用两次)
def my_middleware(get_response):
print('__init__初始化') def in_middleware(request):
print('请求之前被调用')
response = get_response(request)
print('请求之后被调用')
return response return in_middleware
视图函数
def index_view(request):
print('view视图被调用')
return HttpResponse('ok')
运行

注册中间件

多个中间件的使用
1)在视图函数执行之前,中间件由上至下执行
2)在视图函数请求至后,中间间由下到上
注册中间间

定义两个中间件
def my_middleware(get_response):
print('__init__初始化') def in_middleware(request):
print('请求之前被调用')
response = get_response(request)
print('请求之后被调用')
return response return in_middleware def my_middleware1(get_response):
print('__init2__初始化') def in_middleware(request):
print('请求2之间被调用')
response = get_response(request)
print('请求2之后被调用')
return response
return in_middleware
运行结果

模板的使用
根目录创建一个静态文件static_files
修改静态文件的参数

访问

模板的配置

模板的继承
{% extends "父模板路径"%}
代码块
{% block 名称 %}
预留区域,可以编写默认内容,也可以没有默认内容
{% endblock 名称 %}
注释
{#...#}
多行注释
{% comment %}
...
{% endcomment %}
Django框架的使用教程--类视图-中间间-模板[六]的更多相关文章
- Django内置的通用类视图
1.ListView 表示对象列表的一个页面. 执行这个视图的时候,self.object_list将包含视图正在操作的对象列表(通常是一个查询集,但不是必须). 属性: model: 指定模型 te ...
- 六、Django之表单和类视图-Part 4
一.表单form 为了接收用户的投票选择,我们需要在前端页面显示一个投票界面.让我们重写先前的polls/detail.html文件,代码如下: <h1>{{ question.quest ...
- Django:(05)类视图,装饰器和中间件
一.类视图的定义和使用 在Django中还可以通过类来定义一个视图,称为类视图. 定义一个类视图:定义一个类,需继承 Django 提供的 View 类 . from django.views.gen ...
- Django框架的使用教程--视图和路由[二]
视图和路由 1.创建一个django_test应用 2.setting中设置django_test INSTALLED_APPS = [ 'django.contrib.admin', 'django ...
- Django框架的使用教程--路由-请求-响应[四]
路由 路由可以定义在工程的目录下(看你的需求),也可以定义在各个应用中来保存应用的路由,用主路文件urls中使用include()包含各个应用的子路由的数据 路由的解析顺序 Django接收到请求后, ...
- Django框架的使用教程--站点的管理[七]
Django的站点管理 创建超级管理员命令(密码要8位) python manage.py createsuperuser 进入站点管理 注册模型类 from django.contrib impor ...
- Django框架的使用教程--Cookie-Session[五]
Cookie cookie是存储在浏览器中的一段文本信息,下次同一网站请求,就会发送该cookie给服务器,一般的浏览器都有启动cookie,用cookie存储信息,最好不要存储密码,cookie也有 ...
- Django框架的使用教程--mysql数据库[三]
Django的数据库 1.在Django_test下的view.py里面model定义模型 from django.db import models # Create your models here ...
- Django框架的使用教程--环境的搭建和项目的创建[一]
Django环境的搭建 Django 常用的命令 # 创建一个名为Django_test子应用 python manage.py startapp Django_test # 生成迁移文件 pytho ...
随机推荐
- 使用Windows的mstsc远程桌面连接到Ubuntu图形界面(AWS上安装的Ubuntu系统)
参考文档:https://blog.csdn.net/liumaolincycle/article/details/50052619 https://www.cnblogs.com/eczhou/p/ ...
- 从零开始学 Web 之 jQuery(五)操作元素其他属性,为元素绑定事件
大家好,这里是「 从零开始学 Web 系列教程 」,并在下列地址同步更新...... github:https://github.com/Daotin/Web 微信公众号:Web前端之巅 博客园:ht ...
- Netty精粹之玩转NIO缓冲区
摘要: 在JAVA NIO相关的组件中,ByteBuffer是除了Selector.Channel之外的另一个很重要的组件,它是直接和Channel打交道的缓冲区,通常场景或是从ByteBuffer写 ...
- react-native绑定优酷SDK-附效果图和源码
ReactNative绑定优酷SDK需要用到两部分知识: 优酷本身的sdk绑定: RN与原生界面的交互: 效果: RN版本:0.49.3 代码更新日期:2017.10.26 下文也根据绑定需要分为两部 ...
- 初学javaScript推荐工具
对于刚开始学习js的同学,强烈推荐直接使用chrome developer mode,超级方便. 随便打开一个网页,开启开发者模式即可写js代码,不用新建html和js文件即可看到自己写的js代码的结 ...
- 手撕coreML之yolov2 object detection物体检测(含源代码)
一些闲话: 前面我有篇博客 https://www.cnblogs.com/riddick/p/10434339.html ,大致说了下如何将pytorch训练的.pth模型转换为mlmodel,部署 ...
- Sphinx coreseek 3.2
功能 中文的拆词索引 MySQL中like模糊查询. >1>5>%可以用索引 配置 用编辑器打开 path 配置 改绝对路径 https://blog.csdn.net/u013 ...
- MySQL常用的备份方式与备份工具简介
一.MySQL备份方式与备份类型 1.备份的必要性 再生产环境中,为了防止硬件故障.软件故障.自然灾害.误操作等各种原因导致的数据库数据丢失后能恢复到事故之前的状态,我们需要对数据库进行备份和恢复操作 ...
- Java语法之反射
一.反射机制 在前面Java语法之注解自定义注解时我们也有提到反射,要获取类方法和字段的注解信息,必须通过Java的反射技术来获取 Annotation对象.那什么是反射呢?JAVA反射机制是在运行状 ...
- ajax读取txt文本时乱码的解决方案
前言:第一次学习使用 ajax 就是用来读取文本 先给出现乱码的代码<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional/ ...