如何将瓶子用于API服务器

时间:2012-05-14 08:16:00

标签: python bottle

我使用瓶子框架来设置简单的Web服务。 从客户端提交数据时,如何判断此数据包是通过POST还是GET方法? 标题之间的字段??

1 个答案:

答案 0 :(得分: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