Python での POST 変数と GET 変数の操作
PHP の簡素化された POST 変数と GET 変数の処理とは異なり、Python ではフレームワークまたはライブラリを使用する必要があります。シームレスなデータ取得。
Raw CGI
基本的な処理には、import cgi モジュールを使用します。
<code class="python">import cgi form = cgi.FieldStorage() print form["username"]</code>
Django、Pylons、Flask、または Pyramid
これらのフレームワークは、特殊なリクエスト オブジェクトを提供します:
<code class="python">print request.GET['username'] # GET form method print request.POST['username'] # POST form method</code>
Turbogears、Cherrypy
Turbogears と Cherrypy では、request.params 属性を利用します。
<code class="python">from cherrypy import request print request.params['username']</code>
Web.py
Web.py は を使用します。 input 関数:
<code class="python">form = web.input() print form.username</code>
Werkzeug
Werkzeug は form 属性を提供します:
<code class="python">print request.form['username']</code>
Cherrypy および Turbogears カスタム ハンドラー
パラメーター プレースホルダーを使用してハンドラー関数を宣言します:
<code class="python">def index(self, username): print username</code>
Google App Engine
ハンドラー内クラスの場合は、get メソッドを使用します。
<code class="python">class SomeHandler(webapp2.RequestHandler): def post(self): name = self.request.get('username') self.response.write(name)</code>
フレームワークの考慮事項
アプリケーションの要件に応じて、適切なフレームワークまたはライブラリを選択して、 POST 変数と GET 変数の効率的な処理。
以上がPython で POST 変数と GET 変数にアクセスするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。