web2py检查它是否是POST操作

时间:2013-02-22 21:02:33

标签: python post http-post web2py

在django中,我可以轻松地测试它是否是

的后期行动
 if request.POST:
     do whatever

如何检查它是web2py中的POST操作

1 个答案:

答案 0 :(得分:3)

请求方法可从以下网址获得:

request.env.request_method

但是对于这种情况,

if request.post_vars:
    #whatever

可能更容易