0

我正在使用 Google App Engine GUI。不知道我做错了什么,因为我正在追随 Google 在这方面的领导。在 GUI 中,应用程序在管理端口 8000 上运行并在端口 8080 上侦听。当我转到 localhost:8080 时,Chrome 中出现“服务器错误”。这是防火墙问题还是 GAE 问题?

helloudacity.py

 import webapp2

 class mainPage(webapp2.RequestHandler):

      def get(self):
        self.response.headers['Content-Type'] = 'text/plain'
        self.response.write('Hello, Udacity!')


application = webapp2.WSGIApplication([
('/', MainPage),
], debug=true)

应用程序.yaml

application: your-app-id
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
 - url: /.*
   script: helloudacity.application
4

2 回答 2

2

您忘记在路线中将 mainPage 大写,并将 debug=true 设置为 True。如果您查看错误控制台,则大多数错误都应该存在。

于 2013-09-10T19:50:38.047 回答
1

尝试更改debug=truedebug=True.

Python 上的布尔值是Trueor False

谷歌的样本是正确的。

于 2013-09-10T19:51:11.033 回答