0
我剛開始學習谷歌應用程序引擎。Python - Google App Engine
當我在下面輸入下面的代碼時,我得到的只是「Hello world!」 我認爲所需的結果是「你好,webapp世界!」
我錯過了什麼?我甚至嘗試複製谷歌框架文件夾與我的應用程序在同一個文件夾中。
謝謝。
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
class MainPage(webapp.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write('Hello, webapp World!')
application = webapp.WSGIApplication(
[('/', MainPage)],
debug=True)
def main():
run_wsgi_app(application)
if __name__ == "__main__":
main()