测开之路五十二:蓝图的用法
Posted zhongyehai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了测开之路五十二:蓝图的用法相关的知识,希望对你有一定的参考价值。
目录结构
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>蓝图渲染</title>
</head>
<body>
<h1>这里是蓝图渲染</h1>
</body>
</html>
子app(创建不同的蓝图,如接口测试、ui测试、性能测试)
from flask import Blueprint
from flask import render_template
interface = Blueprint(‘interface‘, __name__) # 定义一个子app,名为interface(可自定义)
@interface.route(‘/index‘)
def index():
return render_template("interface/index.html")
主程序(注册资app、调蓝图)
from flask import Flask
from interface import interface # 导入对应创建的子app
app = Flask(__name__)
app.register_blueprint(interface, url_prefix=‘/interface‘) # 用子app注册蓝图,url_prefix:访问时会把此内容拼接到host+端口后面
if __name__ == ‘__main__‘:
app.run(
host=‘0.0.0.0‘,
port=8888,
debug=True
)
访问
以上是关于测开之路五十二:蓝图的用法的主要内容,如果未能解决你的问题,请参考以下文章