1

我只是想在谷歌应用引擎中运行 hello world 程序。但是当我尝试在浏览器上运行该应用程序时,我收到 500 服务器错误。我尝试重新安装 GAE 应用程序引擎启动器和 python 2.7.5。但没有运气!

这是我的hello.py

import webapp2

class MainPage(webapp2.RequestHandler):
    def get(self):
        self.response.headers['Content-Type'] = 'text/plain'
        self.response.write('Hello, World!')


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

应用程序.yaml

application: silent-blend-359
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /.*
    script: hello.application

日志很大所以我把它贴在这里http://paste.ubuntu.com/6195427/

解决了

我正在使用代理连接到互联网。刚刚禁用了代理,瞧!问题解决了!

4

1 回答 1

2

缩进是 Python 语法的一部分。正确缩进:

class MainPage(webapp2.RequestHandler):
    def get(self):
        self.response.headers['Content-Type'] = 'text/plain'
        self.response.write('Hello, World!')

并且,替换以下行app.yaml(没有applicationin hello.py,但是app):

hello.application

和:

hello.app

你好.py

import webapp2

class MainPage(webapp2.RequestHandler):
    def get(self):
        self.response.headers['Content-Type'] = 'text/plain'
        self.response.write('Hello, World!')


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

应用程序.yaml

application: silent-blend-359
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /.*
  script: hello.app
于 2013-10-05T07:22:40.680 回答