from flask import Flask,render_template
app=Flask(__name__)
@app.route('/entry',method=['POST','GET'])
def entry():
return render_template('entry.html',the_title='welcome to entry ')
@app.run(debug=True)
答案 0 :(得分:0)
您必须在正确的位置创建模板文件;在您的python模块旁边的templates
子目录中。
该错误表明entry.html
目录中没有templates/
文件。确保在与python模块相同的目录中创建了该目录,并且实际上确实在该子目录中放置了entry.html
文件。
myproject/
app.py
templates/
entry.html
如果您的应用是软件包,则应在软件包内部创建templates
文件夹。
myproject/
mypackage/
__init__.py
templates/
entry.html