我第一次学习Flask而且我无法让本地主机显示第二页。到目前为止,我在模板文件夹中放了2页,索引页和第二页。这是代码:
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def home():
return render_template('home.html')
@app.route('/about')
def about():
return render_template('about.html')
if __name__ == '__main__':
app.run(debug=True)
这是错误页面。我认为这是一个典型的页面未找到错误。
未找到
在服务器上找不到请求的URL。如果您手动输入了URL,请检查拼写,然后重试。