python bottle學習(三)動態路由配置(通配符)

from bottle import (run, route, get, post,
                    default_app, Bottle)


@route('/', method='GET')
@route('/index')
def hello():
    return 'hello, word!'

"""
bottle的動態route提供了五種默認的類型,即:
str,int,float,path和re(正則),格式爲:<name:filter>
"""

"""若是route中沒有指定類型,只有變量名,默認是str
可是你不能指定str,如:/api/test/<name:str>,這樣寫
會報錯,若是是str類型的直接留一個變量名就好,不須要
加上:str,以下
"""
@route('/api/test/<n>')
def hello(n):
    print type(n)
    return '--str---'+n

# 匹配int
@route('/api/test/<n:int>')
def hello(n):
    print type(n)
    return '--int---'+str(n)

# 匹配float
@route('/api/test/<n:float>')
def hello(n):
    print type(n)
    return '--float---'+str(n)

# 匹配path
@route('/api/test/<n:path>')
def hello(n):
    print type(n)
    return '--path---'+str(n)

# 匹配正則
@route('/api/test/<n:re:.+>')
def hello(n):
    print type(n)
    return '--path---'+str(n)


# 另外,python支持自定義filter,官方的例子:
官方文檔
def list_filter(config): ''' Matches a comma separated list of numbers. ''' delimiter = config or ',' regexp = r'\d+(%s\d)*' % re.escape(delimiter) def to_python(match): return map(int, match.split(delimiter)) def to_url(numbers): return delimiter.join(map(str, numbers)) return regexp, to_python, to_url app.router.add_filter('list', list_filter) @route('/follow/<ids:list>') def follow_users(ids): 。。。
if __name__ == '__main__': run(host='0.0.0.0', port=1234, reloader=True)
相關文章
相關標籤/搜索