4

我有 main.html 链接到 web.css,当我运行主文件时,它使用 CSS 运行良好,但是当我在谷歌应用引擎上运行整个东西时,它不应用 CSS。从我得到的 GAE 日志中

INFO     2012-05-10 01:58:46,526 dev_appserver.py:2891] "GET /web.css HTTP/1.1" 404 -
INFO     2012-05-10 01:58:46,540 dev_appserver.py:2891] "GET /favicon.ico HTTP/1.1" 200 -

这是在我的 html 文件中

<html>
    <head>
        <link rel="stylesheet" type="text/css" href="web.css"/>
    </head>
    <body>
        <h1> Hi </h1>
    </body>
</html>

这是我的代码

import os
import webapp2
import jinja2
import re
from datetime import datetime
from google.appengine.ext import db
from utility_functions import valid_username, valid_password, valid_email

class Handler(webapp2.RequestHandler):    
    def render(self, link, values={}):
        je = jinja2.Environment(autoescape=True, loader=jinja2.FileSystemLoader(
            os.path.join(os.path.dirname(__file__), 'templates')))

        template = je.get_template(link)
        self.response.out.write(template.render(values))        


class MainPage(Handler):
    def get(self):
        self.render('main.html')


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

2 回答 2

7

对于偶然发现此问题的其他任何人,应使用静态文件处理程序声明静态文件。例如,这提供了一个名为 css 的目录,它将应用程序根目录css中的目录映射到应用程序css域根目录中的公共可用目录:

- url: /css
  static_dir: css
于 2012-05-10T07:06:01.530 回答
4

将此添加到您的app.yaml

- url: /web.css
  static_files: web.css
  upload: web.css
于 2012-05-10T07:24:49.743 回答