我在API应用程序中使用Flask,并且具有以下功能:
@app.route('/v1/myapi/editperson/<int:id_person>)', methods=['PUT'])
def edit_person(person_id):
req_data = request.get_json()
firstname = req_data.get('firstname')
lastname = req_data.get('lastname')
session.query(model.Persons).filter(model.Persons.id==person_id).update( firstname, lastname)
session.commit()
session.close()
return jsonify(req_data)
当我执行这个curl请求时:
curl -i -H "Content-Type: application/json" -X PUT -d '{"firstname": "myfirstname", "lastname": "mylastname"}' http://localhost:5000/v1/myapi/editperson/38
我收到此错误:
HTTP/1.0 404 NOT FOUND
Content-Type: application/json
Content-Length: 27
Server: Werkzeug/0.14.1 Python/2.7.6
Date: Wed, 04 Jul 2018 07:17:09 GMT
Proxy-Connection: keep-alive
Connection: keep-alive
{
"error": "Not found"
}
我在数据库中确实有id = 38的行,所以我不知道为什么找不到该请求。 我使用SQLAlchemy查询数据库。
有任何线索吗?
答案 0 :(得分:4)
实际上是PUT / POST,而且:
@app.route('/v1/myapi/editperson/<int:id_person>)', methods=['PUT'])
vs。
@app.route('/v1/myapi/editperson/<int:id_person>', methods=['PUT'])
答案 1 :(得分:0)
您的注释指定此API仅允许PUT
方法。但是您可以通过POST
方法来请求此API。试试:
curl -X PUT ....
答案 2 :(得分:0)
您的路线通过了id_person,但您的查询使用了person_id