详解django中视图函数的FBV和CBV
作者:suncolor 时间:2022-05-26 01:11:10
1.什么是FBV和CBV
FBV是指视图函数以普通函数的形式;CBV是指视图函数以类的方式。
2.普通FBV形式
def index(request):
return HttpResponse('index')
3.CBV形式
3.1 CBV形式的路由
path(r'^login/',views.MyLogin.as_view())
3.2 CBV形式的视图函数
from django.views import View
class MyLogin(View):
def get(self,request): #get请求时执行的函数
return render(request,'form.html')
def post(self,request): #post请求时执行的函数
return HttpResponse('post方法')
FBV和CBV各有千秋
CBV特点是:
能够直接根据请求方式的不同直接匹配到对应的方法执行
4.CBV源码分析
核心在于路由层的views.MyLogin.as_view()--->其实调用了as_view()函数就等于调用了CBV里面的view()函数,因为as_view()函数是一个闭包函数,返回的是view---->view函数里面返回了dispatch函数--->dispatch函数会根据请求的方式调用对应的函数!
5.CBV添加装饰器的三种方式
from django.views import View #CBV需要引入的模块
from django.utils.decorators import method_decorator #加装饰器需要引入的模块
"""
CBV中django不建议你直接给类的方法加装饰器
无论该装饰器是否能都正常工作 都不建议直接加
"""
django给CBV提供了三种方法加装饰器
# @method_decorator(login_auth,name='get') # 方式2(可以添加多个针对不同的方法加不同的装饰器)
# @method_decorator(login_auth,name='post')
class MyLogin(View):
@method_decorator(login_auth) # 方式3:它会直接作用于当前类里面的所有的方法
def dispatch(self, request, *args, **kwargs):
return super().dispatch(request,*args,**kwargs)
# @method_decorator(login_auth) # 方式1:指名道姓,直接在方法上加login_auth为装饰器名称
def get(self,request):
return HttpResponse("get请求")
def post(self,request):
return HttpResponse('post请求')
来源:https://www.cnblogs.com/suncolor/archive/2022/08/15/16587022.html
标签:django,视图函数,FBV,CBV
0
投稿
猜你喜欢
python中threading超线程用法实例分析
2023-12-14 13:05:45
防注入asp过滤sql特殊字符函数
2007-10-23 17:50:00
PHP加密函数 Javascript/Js 解密函数
2023-06-15 18:03:03
node.js入门教程迷你书、node.js入门web应用开发完全示例
2024-05-03 15:57:38
javascript中的toFixed固定小数位数 简单实例分享
2024-05-21 10:20:28
pycharm解决关闭flask后依旧可以访问服务的问题
2023-12-27 06:39:27
通过Jython调用Python脚本的实现方法
2022-07-08 23:21:42
java连接Oracle数据库的方法解析
2024-01-21 22:12:27
python 使用第三方库requests-toolbelt 上传文件流的示例
2021-05-13 05:48:31
基于Python编写一个微博抽奖小程序
2023-04-02 16:40:00
PyTorch加载模型model.load_state_dict()问题及解决
2022-11-08 07:03:53
python实现双人五子棋(终端版)
2022-08-26 14:28:57
python制作简单计算器功能
2022-08-06 20:57:16
sql2008 还原数据库解决方案
2024-01-26 07:16:59
opencv resize图片为正方形尺寸的实现方法
2023-02-21 15:34:51
基于python+selenium自动健康打卡的实现代码
2022-04-28 06:31:28
jsSmarty Project
2009-10-19 23:14:00
PyQt5每天必学之创建窗口居中效果
2022-02-16 19:03:49
python+Django+apache的配置方法详解
2021-02-18 06:39:06
python实现动态规划算法的示例代码
2023-03-03 09:43:22