如何将Flask响应对象转换为字典

时间:2014-06-24 02:35:38

标签: python json dictionary flask

我知道flask.jsonify返回一个烧瓶响应对象。但是,我无法弄清楚如何将此对象转换为字典。我该怎么做呢?

@app.route('/', methods=['GET'])
def hello(): #Accept and jsonify GET request from Nexmo
    if request.method == 'GET':
        info = jsonify(request.args.lists())
        #Turn info into dictionary here
        process(info)
        return info
    else:
        return 'Hello World!'

1 个答案:

答案 0 :(得分:2)

requests.args已经是一个类似字典的对象,MultiDict。您不需要先使用jsonify

您应该直接使用process致电request.args

如果你真的想要一个字典,你可以拨打request.args.to_dict(flat=False)