标签:参数 关键字 methods 传递 用户id 自己 请求方式 flask python
Flask
中,route
方法,默认只能使用GET
的方式请求url, 如果想要设置自己的请求方式,那么应该传递一个methods
的关键字参数.@app.route(‘/‘, methods=[‘POST‘, ‘GET‘])
# 里面的请求方法可以是小写的,也可以是大写的@app.route('/', methods=['post', 'get'])
def index():
return 'index'
@app.route('/user/<int:user_id>/', methods=['POST', 'GET'])
def user_detail(user_id):
print(user_id)
return '用户id为:%s' % user_id
标签:参数 关键字 methods 传递 用户id 自己 请求方式 flask python
原文地址:https://www.cnblogs.com/nichengshishaonian/p/11631668.html