PyCharm找不到存在的Flask模板

时间:2017-07-10 16:32:48

标签: python flask pycharm

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')

enter image description here

1 个答案:

答案 0 :(得分:6)

右键单击您的模板目录,转到"将目录标记为",然后选择"模板目录"。