摘要: Flask中的CBV 第一种 class Index(views.MethodView): methods = ['GET', 'POST'] decorators = [] def get(self): return 'GET' def post(self): return 'POST' app. 阅读全文
posted @ 2019-04-27 17:47 sfencs 阅读(437) 评论(0) 推荐(0) 编辑