route.py 253 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 from flask import jsonify, request,render_template # from app.models import Basedata # from app.api.auths import Auth from app import common,app from app.api.errors import bad_request @app.route('/') def index(): return render_template("index.html")