PyCharm的代码编辑器在将Template file 'index.html' not found
传递给"index.html"
时显示弹出消息render_template
。模板templates/index.html
存在。访问http://localhost:5000/
会呈现模板。我如何告诉PyCharm该模板是否存在?
@app.route('/')
def index():
return render_template('index.html')
答案 0 :(得分:6)
右键单击您的模板目录,转到"将目录标记为",然后选择"模板目录"。