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 に答える
4

まあ、私の間違いは単純でばかげていました。ファイル「index.html」を間違った方法で作成しました(ここでは正しい方法です)。したがって、私の "index.html" ファイルは実際には ".text" ファイルでした ("名前を付けて保存" index.html" ではなく "index.html" に名前を変更したためです)。

于 2012-06-17T14:39:11.930 に答える
2

Jinja2 を使用した最初の GAE の取り組みに基づく 2 つの考え。まず、yaml ファイルに「-url: .」がありますが、見たチュートリアルに基づいて「-url: /.」を使用しました。ただし、これは問題とは関係がない場合があります。次に、このページのガイダンスを使用して、Jinja2 レンダラーを確立し、アプリケーション ディレクトリのテンプレート サブディレクトリにあるテンプレートに問題はありませんでした: http://webapp-improved.appspot.com/api/webapp2_extras/ jinja2.html#module-webapp2_extras.jinja2

于 2012-06-14T01:49:17.180 に答える