2017-02-02 9 views
0

Flaskアプリケーションのテンプレートフォルダにindex.htmlテンプレートをレンダリングしようとしています。しかし、私はTemplateNotFoundエラーが発生します。テンプレートが存在します。どのようにレンダリングするのですか?Flaskテンプレートが相対パスで指定されていません

@app.route('/') 
def index(): 
    return render_template('../../templates/index.html') 
Traceback (most recent call last): 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\flask\app.py", line 1982, in wsgi_app 
    response = self.full_dispatch_request() 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request 
    rv = self.handle_user_exception(e) 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\flask\app.py", line 1517, in handle_user_exception 
    reraise(exc_type, exc_value, tb) 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\flask\_compat.py", line 33, in reraise 
    raise value 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request 
    rv = self.dispatch_request() 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\flask\app.py", line 1598, in dispatch_request 
    return self.view_functions[rule.endpoint](**req.view_args) 
    File "G:\Projects\Intellij\Python\HelloPython\controller\web\WebHomeController.py", line 10, in webIndex 
    return render_template('../../templates/index.html', message=message) 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\flask\templating.py", line 133, in render_template 
    return _render(ctx.app.jinja_env.get_or_select_template(template_name_or_list), 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\jinja2\environment.py", line 869, in get_or_select_template 
    return self.get_template(template_name_or_list, parent, globals) 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\jinja2\environment.py", line 830, in get_template 
    return self._load_template(name, self.make_globals(globals)) 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\jinja2\environment.py", line 804, in _load_template 
    template = self.loader.load(self, name, globals) 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\jinja2\loaders.py", line 113, in load 
    source, filename, uptodate = self.get_source(environment, name) 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\flask\templating.py", line 57, in get_source 
    return self._get_source_fast(environment, template) 
    File "G:\Settings\Windows\ProgramFiles\Python\Python35-32\lib\site-packages\flask\templating.py", line 85, in _get_source_fast 
    raise TemplateNotFound(template) 
jinja2.exceptions.TemplateNotFound: ../../templates/index.html 

答えて

1

render_templatetemplatesフォルダはそれにその検索パスを持っている神社のENVで見上げたことが名前を取ります。パスの後に指定してください。

# index.html is in the templates folder 
render_template('index.html') 

# users/detail.html is in a sub-folder under templates 
render_template('users/detail.html') 
+0

問題はどこかにあります。 ...私はコントローラを置く/初期化...アプリ/ __init__.py。私は一度初期化したい。私がHelloPython.pyのような場所に置いた場合、アプリケーションは実行されません(ただし、そこにあった、私はいくつかのレイヤーに分割されています)。どうしてか分かりません?フラスコのドキュメントはうまくいっており、更新されていません!! (たとえdjangoの場合でも)。私はデータベースを統合しなければならなかったので、とても不満です! (彼らはどのようにそれらをリリースすることができますか?) – Johir

+1

あなたが尋ねた特定のエラーは、この答えで説明されているように 'render_template'でのテンプレートパスの誤った使用によるものです。あなたが今説明していることは、まったく別の問題のように聞こえますが、私はあなたの文章のスタイルのためにそれを全く理解するのに苦労しています。別の質問がある場合は、別の投稿をしてください。 [mcve]をお読みください。 – davidism

関連する問題