2009-10-05 300 views
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() 

回答

5

正好運行此代碼是否給我所需的輸出。我懷疑你必須錯誤地運行一些其他代碼,因爲絕對有沒有這種代碼給出的方式可能會發出你觀察到的。