bottle动态路由 编程语言 bottle python 发布时间 : 2020-07-17 00:00 字数:62 阅读 : 123456789101112from bottle import route,run@route('/hello/<name>')def index(name=''): return "hello %s"%namerun(port=8080, debug=True,reloader=True)#访问网址 http://localhost:8080/hello/word#动态路由把hello/后的匹配出来,赋值给name,进入函数中再把name返回给浏览器 转载请注明来源 https://tianweiye.github.io