from flask import render_template from app import app """ 首页相关路由配置 """ @app.route('/') @app.route('/index') def index(): item = { "msg": "后台传递信息" } return render_template('index.html', title="梦想橡皮擦", item=item) @app.route('/bt') def bt(): return render_template('bt.html')