| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

Google App Engine Http Formパラメータの取得

提供: MyMemoWiki
2020年2月15日 (土) 07:32時点におけるPiroto (トーク | 投稿記録)による版 (ページの作成:「==Google App Engine Http Formパラメータの取得== Http Form パラメータの処理。 以下参照。 * POSTメッセージハンドラ * HTML特殊文字の…」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
ナビゲーションに移動 検索に移動

Google App Engine Http Formパラメータの取得

Http Form パラメータの処理。 以下参照。

  • POSTメッセージハンドラ
  • HTML特殊文字のエスケープ
  • FORMパラメータ取得
import cgi
import wsgiref.handlers

from google.appengine.api import users
from google.appengine.ext import webapp

class MainPage(webapp.RequestHandler):
    def get(self):
        self.response.out.write("""
        <html>
          <body>
            <form action="/msg" method="post">  
              name:<input type="text" name="name" value="">
msg :<textarea name="message"></textarea>
<input type="submit"> </form> </body> </html> """) class MessagePage(webapp.RequestHandler): def post(self): # POSTメッセージハンドラ self.response.out.write('<html><body>') self.response.out.write('name:' + cgi.escape( # HTML特殊文字のエスケープ self.request.get('name')) # FORMパラメータ取得 + '
')

self.response.out.write('message:

' 
                                 + cgi.escape(
                                   self.request.get('message')) 
                                 + "

")

        self.response.out.write('</body></html>')
        
def main():
    application = webapp.WSGIApplication(
                                         [('/', MainPage),
                                          ('/msg', MessagePage)],
                                          debug=True 
                                         )
    wsgiref.handlers.CGIHandler().run(application)

if __name__ == "__main__":
    main()