簡體   English   中英

為什么 Flask 不使用下面的代碼呈現 html 頁面?

[英]Why Flask is not rendering the html page using code below?

我在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

默認情況下,flask 在templates文件夾中查找 html 模板。 您不需要在 return 語句中顯式附加/templates

用這個

return render_template('home.html')

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM