Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はFlaskを使用しています。
私はajax投稿を行っていますが、キーの存在を確認する必要があります
次のことを試しましたが、うまくいきませんでした
if request.args.has_key('campaign_id_crid'): print True
それを行う正しい方法は何でしょうか?
あなたの例はPython2.xコードでうまく機能します
とにかく、まだ(既存の2.xコードでは-しかしPython 3では削除されています)、次のような演算子dict.has_keyを使用する方がPythonicであると一般に考えられています。in
dict.has_key
in
if 'campaign_id_crid' in request.args: pass # do something