在google apps引擎上运行我的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)
错误:服务器错误
服务器遇到错误,无法完成您的请求。 请在30秒后再试一次。