1、报错 jinja2.exceptions.TemplateNotFound
解决方法:报错jinja2.exceptions.TemplateNotFound,template没找到,由于我之前直接将.html文件和.py文件直接放在同一目录下,经了解,需要新增一个 templates目录,将.html文件放在templates目录下,templates目录和.py文件需保持同一级
2、报错 Not Found
The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.
解决方法:报错Not Found,url不存在,可能由于url地址没填写正常,程序默认是进入其根目录,代码加上根目录的路由即可 @app.route(‘/’)