使用参数调用本地主机服务器

时间:2020-02-19 16:27:27

标签: flask

我正在端口81上运行Flask服务器。我希望服务器在/上显示正常页面,在/debug上显示调试页面。输入localhost:81时,我得到正常页面。当我尝试导航到localhost\debug:81localhost/81:81时,出现“未找到”错误。我在做什么错了?

app = Flask(__name__)

@app.route('/')
def index():
    return render_template('index.html')

@app.route('/debug')
def index_debug():
    return render_template('index.html', debug=true)

1 个答案:

答案 0 :(得分:1)

您必须具有这样的项目结构:

index.py
templates/
      index.html

并且您的参数调试必须为debug = True