引子:
和django一样,flask也支持cbv
代码:
# -*- coding: utf-8 -*- from flask import Flask,views app=Flask(__name__) def auth(func): def inner(*args,**kwargs): ret=func(*args,**kwargs) return ret return inner class IndexView(views.MethodView): methods=["GET"] decorators=[auth,] def get(self): return "index.get" def post(self): return "index.post" app.add_url_rule("/index",view_func=IndexView.as_view(name="index")) # name=endpoint # 继承view 需要自己写dispatch_request class HomeView(views.View): methods = ["GET"] decorators = [auth,] def dispatch_request(self): return 'index' app.add_url_rule("/home",view_func=IndexView.as_view(name="home")) # name=endpoint if __name__ == '__main__': app.run()
as_view 源码解析
如果是直接继承了 class IndexView(views.MethodView): 这会直接调用 MethodView 中的 dispatch_request 方法,现在的flask版本中view 也有dispatch_request 方法 但是查看后 发现这个方法并没有实现什么 最终继承的是 Exception 类最终抛出异常 当然这些操作都是在as_view 中进行的