2011-12-24 9 views
1

なぜ私のアプリケーション(AppEngineの+のpython)PUT/DELETEローカルホスト上で作業(応答status code 200)ではなく、サーバ内(appspot)(status code 0とrespone) enter image description hereのAppEngineのpython `localhostのではなく、サーバーで

に取り組ん/ DELETE`をPUT

ありがとうございます。

app.yamlを

version: 1 
runtime: python 
api_version: 1 

handlers: 
- url: .* 
    script: guestbook.py 

guestbook.py

class MainPage(webapp.RequestHandler): 
    def put(self, id=None): 
    self.response.out.write('put') 
    def delete(self, id=None): 
    self.response.out.write('delete')  
    def get(self): 
    self.response.out.write('<html><body>') 

application = webapp.WSGIApplication([ 
    ('/', MainPage), 
    ('/sign', Guestbook) 
], debug=True) 


def main(): 
    wsgiref.handlers.CGIHandler().run(application) 
+0

そのスクリーンショットはどのようなアプリケーションですか? 「ステータスコード0」はありません。 – geoffspear

+0

高度なレストクライアントツールを使用しています:https://chrome.google.com/webstore/detail/hgmloofddffdnphfgcellkdfbfbjeloo –

+0

読んでいただきありがとうございます –

答えて

0

それは、ブラウザの問題でなければなりません!それは私のために完全に動作するローカル/プロダクト

関連する問題