我是Flask的新手,并且仍在学习Python。简而言之:
操作系统:Windows 7 IDE:Eclipse + Pydev +烧瓶。 就像我经常在国外那样,在外部磁盘上的工作空间。 Python版本:3.7.3 尝试运行简单的Web应用程序时,flask无法找到模板。
我已经将html文件保存在C:,D:和外部磁盘上的不同映射中。没有任何结果。我想一些简单的代码可以帮到我...但是我没有头绪!我想将模板映射放在Eclipse工作区中。
Python代码:
from flask import Flask, render_template
app=Flask(__name__)
@app.route("/")
@app.route('/index')
def main():
"""Render an HTML template and return"""
return render_template('flask01.html')
def index():
user={'username':"Daniel"}
return user
def home():
return "Hi there"
if __name__ == '__main__':
app.run(debug=True)