代码拉取完成,页面将自动刷新
from flask import Flask, render_template, redirect, url_for
from flask import jsonify
from flask_cors import CORS
from core import type
from route import controller
app = Flask(
__name__, static_folder="appfront/dist/static", template_folder="appfront/dist")
CORS(app)
@app.get('/')
def home():
'''
当在浏览器访问网址时,通过 render_template 方法渲染 dist 文件夹中的 index.html。
页面之间的跳转交给前端路由负责,后端不用再写大量的路由
'''
return render_template('index.html')
@app.get('/index')
def index():
redirect('/', code=302)
# @app.handle_exception(500)
# def error():
# redirect('/', code=302)
# 启动运行
if __name__ == '__main__':
app.run(host="localhost", port=8000, debug=True)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。