【问题标题】:Why Flask is not rendering the html page using code below? [duplicate]为什么 Flask 不使用下面的代码呈现 html 页面?
【发布时间】:2019-06-05 11:24:19
【问题描述】:

我在AWS C9 平台上启动了一个新项目,但在使用 Flask 框架渲染网页时遇到问题

框架运行正常,它可以返回消息(默认情况下),但是当我尝试返回模板(Html 页面)时,我收到错误:“TemplateNotFound” 我将在下面留下代码和错误消息

import os
from flask import Flask, render_template, request
app = Flask(__name__)



@app.route("/")
@app.route("/home")
def home():
    return render_template('templates/home.html')

@app.route("/about")
def about():
    return "<h1>Flask is working</h1>"    


if __name__=="__main__":
    app.run(host='0.0.0.0', port=8080)
    app.debug = True

堆栈跟踪:-

Traceback (most recent call last):
  File "/usr/local/lib/python2.7/site-packages/flask/app.py", line 2311, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/local/lib/python2.7/site-packages/flask/app.py", line 1834, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/local/lib/python2.7/site-packages/flask/app.py", line 1737, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/local/lib/python2.7/site-packages/flask/app.py", line 1832, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/local/lib/python2.7/site-packages/flask/app.py", line 1818, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/home/ec2-user/environment/Flask_Catalog/flaskCatalog.py", line 10, in home
    return render_template('templates/home.html')
  File "/usr/local/lib/python2.7/site-packages/flask/templating.py", line 134, in render_template
    return _render(ctx.app.jinja_env.get_or_select_template(template_name_or_list),
  File "/usr/local/lib/python2.7/site-packages/jinja2/environment.py", line 869, in get_or_select_template
    return self.get_template(template_name_or_list, parent, globals)
  File "/usr/local/lib/python2.7/site-packages/jinja2/environment.py", line 830, in get_template
    return self._load_template(name, self.make_globals(globals))
  File "/usr/local/lib/python2.7/site-packages/jinja2/environment.py", line 804, in _load_template
    template = self.loader.load(self, name, globals)
  File "/usr/local/lib/python2.7/site-packages/jinja2/loaders.py", line 113, in load
    source, filename, uptodate = self.get_source(environment, name)
  File "/usr/local/lib/python2.7/site-packages/flask/templating.py", line 58, in get_source
    return self._get_source_fast(environment, template)
  File "/usr/local/lib/python2.7/site-packages/flask/templating.py", line 86, in _get_source_fast
    raise TemplateNotFound(template)
TemplateNotFound: templates/home.html



LicentaCatalogOnline2019
 |
 +--Flask_Catalog
 |  |  
 |  +-- flaskCatalog.py
 |    
 +--templates
 |  |  
 |  +-- about.html
 |  +-- home.html

【问题讨论】:

  • 也许可以使用模块 os 中的函数检查您为模板定义的路径是否存在。

标签: python html amazon-web-services flask cloud9


【解决方案1】:

默认情况下,flask 在 templates 文件夹中查找 html 模板。您不需要在 return 语句中显式附加 /templates

使用这个

return render_template('home.html')

【讨论】:

  • 你能发布你的目录结构吗?
  • Templates 文件夹应该在你的主 Flask py 文件的根文件夹中。所以将模板文件夹移动到flask_catalog
  • 对不起,我是这个平台的新手。我投票赞成你的答案。这就是你的意思?
猜你喜欢
  • 1970-01-01
  • 2020-11-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2013-02-16
  • 1970-01-01
  • 1970-01-01
  • 2012-10-02
相关资源
最近更新 更多