bottle动态路由

1
2
3
4
5
6
7
8
9
10
11
12
from bottle import route,run



@route('/hello/<name>')
def index(name=''):
return "hello %s"%name

run(port=8080, debug=True,reloader=True)

#访问网址 http://localhost:8080/hello/word
#动态路由把hello/后的匹配出来,赋值给name,进入函数中再把name返回给浏览器

转载请注明来源 https://tianweiye.github.io