标签: python post http-post web2py
if request.POST: do whatever
如何检查它是web2py中的POST操作
答案 0 :(得分:3)
请求方法可从以下网址获得:
request.env.request_method
但是对于这种情况,
if request.post_vars: #whatever
可能更容易