0

我使用瓶子框架来设置简单的网络服务。客户端提交数据时,如何判断这个数据包是通过POST还是GET方式?标题中的字段??

4

1 回答 1

4

要访问当前请求的方法,请使用bottle.request.method. 可以在此处找到文档:http: //bottlepy.org/docs/dev/api.html#bottle.BaseRequest.method

这个例子展示了一个小路由,它返回客户端用来请求视图的方法。

from bottle import route, request

@route('/')
def hello():
    return "Method is " + request.method
于 2012-05-14T08:22:22.947 回答