我正試圖在Google App Engine中使用Python進行學習,但無法使教程正常工作。但最終,我想寫一個Python腳本,它將返回服務器中文件夾中的文件列表爲JavaScript。適用於Google App Engine的腳本處理程序
這是我目前有:
+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.
任何人都可以幫助我的設置有什麼問題?
這解決了它。謝謝!只需在'static'文件夾中添加__init__.py –