-3

我正在使用这些文件从官方 GAE webapp2 教程构建留言簿应用程序

helloworld/app.yaml

application: helloworld
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /stylesheets
  static_dir: stylesheets

- url: /.*
  script: helloworld.app

libraries:
- name: jinja2
  version: "2.6"

helloworld/index.html

    <html>
 <head>
    <link  rel="stylesheet" type="text/css" 
    href="/stylesheets/main.css" />

  </head>
  <body>
    {% for greeting in greetings %}
      {% if greeting.author %}
        <b>{{ greeting.author }}</b> wrote:
      {% else %}
        An anonymous person wrote:
      {% endif %}
      <blockquote>{{ greeting.content|escape }}</blockquote>
    {% endfor %}

    <form action="/sign" method="post">
      <div><textarea name="content" rows="3" cols="60"></textarea></div>
      <div><input type="submit" value="Sign Guestbook"/></div>
    </form>

    <a href="{{ url }}">{{ url_linktext }}</a>

  </body>
</html>

helloworld/helloworld.pyhelloworld/stylesheets/main.css与教程中的相同。

import jinja2
import os

jinja_environment = jinja2.Environment (
    loader=jinja2.FileSystemLoader(os.path.dirname(_file_)))

import cgi
import datetime
import urllib
import webapp2

from google.appengine.ext import db
from google.appengine.api import users


class Greeting(db.Model):
  """Models an individual Guestbook entry with an author, content, and date."""
  author = db.StringProperty()
  content = db.StringProperty(multiline=True)
  date = db.DateTimeProperty(auto_now_add=True)


def guestbook_key(guestbook_name=None):
  """Constructs a Datastore key for a Guestbook entity with guestbook_name."""
  return db.Key.from_path('Guestbook', guestbook_name or 'default_guestbook')


class MainPage(webapp2.RequestHandler):
    def get(self):
        guestbook_name=self.request.get('guestbook_name')
        greetings_query = Greeting.all().ancestor(
            guestbook_key(guestbook_name)).order('-date')
        greetings = greetings_query.fetch(10)

        if users.get_current_user():
            url = users.create_logout_url(self.request.uri)
            url_linktext = 'Logout'
        else:
            url = users.create_login_url(self.request.uri)
            url_linktext = 'Login'

        template_values = {
            'greetings': greetings,
            'url': url,
            'url_linktext': url_linktext,
        }

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


class Guestbook(webapp2.RequestHandler):
  def post(self):
    # We set the same parent key on the 'Greeting' to ensure each greeting is in
    # the same entity group. Queries across the single entity group will be
    # consistent. However, the write rate to a single entity group should
    # be limited to ~1/second.
    guestbook_name = self.request.get('guestbook_name')
    greeting = Greeting(parent=guestbook_key(guestbook_name))

    if users.get_current_user():
      greeting.author = users.get_current_user().nickname()

    greeting.content = self.request.get('content')
    greeting.put()
    self.redirect('/?' + urllib.urlencode({'guestbook_name': guestbook_name}))


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

的CSS

body {
  font-family: Verdana, Helvetica, sans-serif;
  background-color: #DDDDDD;
}

当我运行代码时,一切都按预期工作,但未应用 css

i)当我查看源代码时,我什至看不到 css 的标签 ii)当我查看日志时,我得到了这个奇怪的错误:

INFO     2012-07-27 02:59:11,921 dev_appserver.py:2904] "GET /favicon.ico HTTP/1.1" 404 

我很感激这方面的任何帮助。谢谢!

4

4 回答 4

3

在 helloworld.py 的第 4 行,你写_file了 _ 但它应该是__file__

如果我做出改变,整个事情对我有用。此外,我还收到了对 css 文件的 GET 请求。

INFO     2012-07-28 17:19:17,895 dev_appserver.py:2952] "GET /stylesheets/main.css HTTP/1.1" 200 -
于 2012-07-28T17:21:12.527 回答
0

我遇到了同样的问题,其他团队成员也遇到了同样的问题。

起初,我被告知要回到 Google App Engine Launcher 的 1.6.2 版,但这不起作用,所以我通过终端进行部署(使用旧的常规方法 update.py)并且它起作用了。

我猜 GoogleAppEngine Launcher 不适用于某些项目。

注意:我们使用的是旧的 M/S 版本的 AppEngine。

于 2012-12-15T15:00:18.677 回答
0

您对 app.yaml 中样式表的调用存在严重问题。试试这个,而不是:

application: helloworld
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /stylesheets
  static_dir: stylesheets

# you missed this section. It allows all .css files inside stylesheets
- url: /stylesheets/(.*\.(css)) 
  static_files: stylesheets/\1
  upload: stylesheets/(.*\.(css))

- url: /.*
  script: helloworld.app

libraries:
- name: jinja2
  version: "2.6"
于 2012-12-31T03:03:23.210 回答
0

听起来您的测试服务器没有为您修改后的 index.html 提供服务,但它正在为您提供没有 CSS 链接标记的原始 index.html 服务。或者它可能正在使用缓存页面。尝试清除缓存或重新启动服务器。或者确保您的更新已正确保存。

于 2012-07-27T03:26:48.213 回答