Flask限制请求访求
- 在
Flask
中,route
方法,默认只能使用GET
的方式请求url, 如果想要设置自己的请求方式,那么应该传递一个methods
的关键字参数. - 在@app.route()中, 指定 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
原文地址:https://www.cnblogs.com/nichengshishaonian/p/11631668.html
时间: 2024-10-10 10:28:40