put请求返回flask错误

2uluyalo  于 2021-06-20  发布在  Mysql
关注(0)|答案(3)|浏览(361)

我在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查询数据库。
有什么线索吗?

6uxekuva

6uxekuva1#

您的注解指定此api只允许 PUT 方法。但是你通过 POST 方法。尝试:

curl -X PUT ....
arknldoa

arknldoa2#

确实是put/post,但也包括:

@app.route('/v1/myapi/editperson/<int:id_person>)', methods=['PUT'])

与。

@app.route('/v1/myapi/editperson/<int:id_person>', methods=['PUT'])
2q5ifsrm

2q5ifsrm3#

您的路由通过id\u person,但您的查询使用person\u id

相关问题