0

在 django 中,我可以很容易地测试它是否是 post action

 if request.POST:
     do whatever

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

4

1 回答 1

3

请求方法可从以下位置获得:

request.env.request_method

但对于这种情况,

if request.post_vars:
    #whatever

可能更容易

于 2013-02-22T21:13:18.460 回答