我正在端口81上运行Flask服务器。我希望服务器在/
上显示正常页面,在/debug
上显示调试页面。输入localhost:81
时,我得到正常页面。当我尝试导航到localhost\debug:81
或localhost/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)
答案 0 :(得分:1)
您必须具有这样的项目结构:
index.py
templates/
index.html
并且您的参数调试必须为debug = True