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.
djangoでは、ポストアクションかどうかを簡単にテストできます
if request.POST: do whatever
web2pyのPOSTアクションであることを確認するにはどうすればよいですか
request メソッドは次から入手できます。
request.env.request_method
しかし、この場合、
if request.post_vars: #whatever
おそらく簡単です