18

我正在尝试使用 jinja2 构建我的第一个 GAE 应用程序。在克服了十几个小错误之后,现在我陷入了困境:

Traceback (most recent call last):

File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 1536, in __call__
    rv = self.handle_exception(request, response, e)
  File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 1530, in __call__
    rv = self.router.dispatch(request, response)
  File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 1278, in default_dispatcher
    return route.handler_adapter(request, response)
  File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 1102, in __call__
    return handler.dispatch()
  File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 572, in dispatch
    return self.handle_exception(e, self.app.debug)
  File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2\webapp2.py", line 570, in dispatch
    return method(*args, **kwargs)
  File "C:\Users\CG\Documents\udacity\HiMon\main.py", line 31, in get
    template = jinja_environment.get_template('index.html')
  File "C:\Program Files (x86)\Google\google_appengine\lib\jinja2\jinja2\environment.py", line 719, in get_template
    return self._load_template(name, self.make_globals(globals))
  File "C:\Program Files (x86)\Google\google_appengine\lib\jinja2\jinja2\environment.py", line 693, in _load_template
    template = self.loader.load(self, name, globals)
  File "C:\Program Files (x86)\Google\google_appengine\lib\jinja2\jinja2\loaders.py", line 115, in load
    source, filename, uptodate = self.get_source(environment, name)
  File "C:\Program Files (x86)\Google\google_appengine\lib\jinja2\jinja2\loaders.py", line 180, in get_source
    raise TemplateNotFound(template)
TemplateNotFound: index.html

这是我的yaml文件:

application: himother
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:
- url: /favicon\.ico
  static_files: favicon.ico
  upload: favicon\.ico

- url: .*
  script: main.app

libraries:
- name: webapp2
  version: "2.5.1"
- name: jinja2
  version: "2.6"

这是我的代码:

import os
import webapp2

import jinja2

jinja_environment = jinja2.Environment(autoescape=True,
    loader=jinja2.FileSystemLoader(os.path.join(os.path.dirname(__file__), 'templates')))

class MainPage(webapp2.RequestHandler):
    def get(self):
        template_values = {
            'name': 'Serendipo',
            'verb': 'extremely happy'
        }

        template = jinja_environment.get_template('index.html')
        self.response.out.write(template.render(template_values))

app = webapp2.WSGIApplication([('/', MainPage)],
                              debug=True)

这是我的 .html 模板:

<!DOCTYPE html>
<html>
    <head>
        <title>Look Ma, I'm using Jinja!</title>
    </head>
    <body>
        Hi there - I'm {{ name }}, and I {{ verb }} programming!
    </body>
</html>

尽管出现错误消息,但我有一个名为“templates”的文件夹,并在其中创建了 index.html 文件:

在此处输入图像描述

在此处输入图像描述

在此处输入图像描述

我也安装了jinja2。

现在有没有人知道这个错误的原因?

4

6 回答 6

15

尝试使用

loader=jinja2.FileSystemLoader('templates')

代替

loader=jinja2.FileSystemLoader(os.path.join(os.path.dirname(__file__), 'templates'))

这个对我有用。

于 2012-06-17T12:11:08.610 回答
8

这为我解决了它:

mkdir templates
echo "hello world" > templates/index.html
于 2015-12-22T23:52:47.807 回答
4

好吧,我的错误既简单又愚蠢。我以错误的方式创建了文件“index.html”(这里是正确的方式)。所以,我的“index.html”文件确实是一个“.text”文件(因为我只是将它重命名为“index.html”而不是“另存为”index.html”)。谢谢大家的帮助!

于 2012-06-17T14:39:11.930 回答
4
template_dir = os.path.join(os.path.dirname(__file__), 'templates')
jinja_env = jinja2.Environment(loader = jinja2.FileSystemLoader(template_dir),autoescape = True)
于 2020-04-21T03:31:50.553 回答
2

基于让我第一次使用 Jinja2 进行 GAE 工作的两个想法。首先,在您的 yaml 文件中,您有“-url: . ”,尽管我根据我看到的教程使用了“-url: /.”。但是,这可能与您的问题无关。其次,我使用此页面上的指导来建立我的 Jinja2 渲染器,并且在应用程序目录的模板子目录中找到模板没有问题: http ://webapp-improved.appspot.com/api/webapp2_extras/ jinja2.html#module-webapp2_extras.jinja2

于 2012-06-14T01:49:17.180 回答
0

我收到了同样的错误并尝试了所有答案。后来才知道,要先配置好环境,找到合适的文件夹,才能搜索到html文件,然后jinja2才能找到文件。

以下行将删除错误:

env = Environment(loader=FileSystemLoader(searchpath='C:\Folder\of\html\file')
template = env.get_template('Name_of_file.html')
于 2019-01-06T13:41:03.407 回答