# coding=utf-8
import bottle
@bottle.route('/url/url', method=['GET','POST'])
def big_data():
# 获取请求参数
trans_user_type = bottle.request.GET.get('trans_user_type')
return
#正则url:匹配任意值
@bottle.route('/url/url/:##', method='GET')
def big_data():
url = bottle.request.url
return
原创文章,作者:745907710,如若转载,请注明出处:https://blog.ytso.com/tech/python/272257.html