1
なぜ私のアプリケーション(AppEngineの+のpython)PUT/DELETE
ローカルホスト上で作業(応答status code 200
)ではなく、サーバ内(appspot)(status code 0
とrespone) のAppEngineのpython `localhostのではなく、サーバーで
ありがとうございます。
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」はありません。 – geoffspear
高度なレストクライアントツールを使用しています:https://chrome.google.com/webstore/detail/hgmloofddffdnphfgcellkdfbfbjeloo –
読んでいただきありがとうございます –