Flask(11)-视图-标准类视图及其使用
类视图的好处是支持继承,但是类视图和函数视图不一样,需要使用“app.add_url_rule(url_rule,view_func)”来注册。
标准视图:
标准视图继承flask.views.view,并在子类中实现dispatch_reuqest方法
#实现方法
from flask import views, jsonify
class IndexView(views.View): # 继承 from flask import views.View
def dispatch_request(self): # dispatch_request方法,所有请求都会执行这个方法
return "index"
# 注册URL,as_view()必须要传入参数,如果不加endpoint则默认是as_view参数
app.add_url_rule("/index/",endpoint="index",view_func=IndexView.as_view("index"))
# 继承
class JSONView(views.View):
def get_date(self):
raise NotImplementedError
# dispatch_request方法
def dispatch_request(self):
# json格式化数据
return jsonify(self.get_date())
class IndexView(JSONView): # 继承 JSONView类
def get_date(self):
return {"username": "123"}
app.add_url_rule("/index/", endpoint="index", view_func=IndexView.as_view("index")) # 注册URL
实际使用
## views
from flask import Flask, render_template, url_for
from flask import views, jsonify
class ADSView(views.View):
def __init__(self):
super(ADSView, self).__init__()
self.text = {
"ads": "hahahha"
}
class LoginView(ADSView):
# dispatch_request()方法
def dispatch_request(self):
return render_template("login.html", **self.text)
app.add_url_rule("/login/", view_func=LoginView.as_view("login"))
## html
<!DOCTYPE html>
<html lang="zh-en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
</head>
<body>
<h1>登录页</h1>
<p>{
{ ads }}</p>
</body>
</html>
正文到此结束
评论
登录后才能发表评论 登录/注册
0评论