我正在尝试在 Google App Engine 中使用 Python 学习,但无法使教程正常工作。但最终,我想编写一个 Python 脚本,将服务器文件夹中的文件列表返回给 JavaScript。
这是我目前拥有的:
+MainProj
+ static
+scripts
. __init__.py
. helloworld.py
. app.yaml
在 helloworld.py
import webapp2
class MainPage(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.write('Hello, webapp2 World!')
app = webapp2.WSGIApplication([('/.*', MainPage)], debug=True)
在 app.yaml
application: applicationname
version: 1
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /.*
script: static.scripts.helloworld.app
我收到服务器错误
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.
任何人都可以帮助我的设置有什么问题?