1 Star 1 Fork 1

Ragus/stealer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.py 797 Bytes
一键复制 编辑 原始数据 按行查看 历史
honghai 提交于 2021-07-26 15:53 . flask
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)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ragus/stealer.git
git@gitee.com:ragus/stealer.git
ragus
stealer
stealer
master

搜索帮助