0

这是我的 main.py 文件和我想要由我正在使用的 Jinja2 模板呈现的 html 文件:

主文件

import os
import webapp2
import jinja2
from google.appengine.ext import db

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

class Handler(webapp2.RequestHandler):
    def write(self, *a, **kw):
        self.response.out.write(*a, **kw)
    def render_str(self, template, **params):
        t = jinja_env.get_template(template)
        return t.render(params)
    def render(self, template, **kw):
        self.write(self.render_str(template, **kw))

class MainPage(Handler):
    def get(self):
        self.render("temp.html")

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

临时文件

<!DOCTYPE html>
<html>
<head>
<style>
div#logo
{
 position: absolute;
 margin-top:5%;
 margin-left:25%;
}

div#cart
{
 position: absolute;
 margin-left:87%;
 margin-top:-2px;

}
</style>
</head>

<body>
<div id = logo><img src="logo.png" height = 60% width = 60%></div>
<div id = cart><img src="cart.jpg" height = 75 px ></div>
</body>
</html>

现在,我已将 html 文件与所需的图像一起保存在我的应用引擎应用程序目录的模板文件夹中。此外,当我在浏览器上运行 html 文件时,它可以正常工作。但是,当我使用 GAE 运行我的应用程序时,我得到的只是一个空白屏幕。为什么会这样?为什么我的 html 文件没有被渲染?

4

1 回答 1

0

一些建议:

  1. 检查您的 html 是否实际呈现(在 html 文件中放置一些文本)
  2. 您的 app.yaml 文件需要包含放置照片的静态目录。有关示例,请参阅https://github.com/GoogleCloudPlatform/appengine-guestbook-python/blob/master/app.yaml 。
  3. 使用适合您放置图像的位置的 URL 引用图像,例如,如果您将它们放在“客户端”目录下。

https://github.com/GoogleCloudPlatform/appengine-guestbook-python

很好看基本配置。

于 2013-10-08T01:16:50.140 回答