1

例如,网址:

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

以及如何知道 URL 是否包含参数 a 。

4

1 回答 1

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
于 2013-10-27T15:22:44.603 回答