GAE教程 - 浏览' Localhost:8080'给我服务器错误?

时间:2013-09-10 19:39:20

标签: google-app-engine

我正在使用Google App Engine GUI。不知道我做错了什么,因为我跟随谷歌的领先优势。在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)

的app.yaml

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

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

2 个答案:

答案 0 :(得分:2)

您忘记在路由中大写mainPage并将debug = true归为True。如果您查看错误控制台,大多数错误应该在那里。

答案 1 :(得分:1)

尝试将debug=true更改为debug=True

Python上的布尔值为TrueFalse

Google´s sample是对的。