@app.route('/test',methods=["POST"])定义请求方法没生效?
来源:4-3 Flask开发Post请求
慕容gg
2020-03-25
@app.route(’/test’,methods=[“POST”])
def test():
res = request.method
return res
接口返回还是405
127.0.0.1 - - [25/Mar/2020 21:16:46] “?[31m?[1mGET /test HTTP/1.1?[0m” 405 -
写回答
1回答
-
Mushishi
2020-03-26
405 哟。你看一下。app.route('/', methods=['GET', 'POST']) 这里你先用get访问。post请求你是提交的么
00
相似问题