python – 尝试除Flask中的JSON错误

我正在尝试向API添加DELETE方法,如下所示:

if request.method == 'DELETE':

    if request.headers['Content-Type'] == 'application/json':

        try:
            data = json.loads(request.data)
            data_id = data['id']
            db.execute('DELETE FROM places WHERE id=' + data_id)
            db.commit()
            resp = Response({"Delete Success!"}, status=200, mimetype='application/json')
            return resp

        except (ValueError, KeyError, TypeError):
            resp = Response({"JSON Format Error."}, status=400, mimetype='application/json')
            return resp

我通过以下CURL:

curl -H "Content-type: applicaiton/json" -X DELETE http://localhost:5000/location -d '{"id":3}'

try except块由于某种原因失败了.我无法发现问题所在.有什么想法我可以调试这个吗?

最佳答案 如果你改变了

except (ValueError, KeyError, TypeError):
    resp = Response({"JSON Format Error."}, status=400, mimetype='application/json')
    return resp

except (ValueError, KeyError, TypeError) as error:
    print error
    resp = Response({"JSON Format Error."}, status=400, mimetype='application/json')
    return resp

你将能够看到你的错误.

更新:我很高兴你发现了你的错误!我认为大多数包装数据库连接的模块允许您执行以下操作:

db.execute('SELECT * FROM awesome_table WHERE id=%s', data_id)

它们通常会提供一些基本的SQL注入保护.

点赞