如何判断瓶子中的参数是否在URL中?

时间:2013-10-27 06:05:14

标签: bottle

例如,URL:

http://localhost:8080/company?a=1

我怎么知道URL是否包含参数a。

1 个答案:

答案 0 :(得分:2)

以下是您访问a的方式:

@route('/company')
def company():
    if bottle.request.params.get('a') is not None:
        # param "a" was present in the URI's query string