我正在尝试将JSON数据发布到烧瓶应用程序中。然后应用程序循环遍历数组中的每个对象并返回结果。如果我在数组中只有一个对象,我就能够返回对象中每个值的结果。但是,任何具有多个对象的JSON数据都会产生500内部服务器错误。
我在这里缺少什么?
from flask import Flask, url_for
app = Flask(__name__)
from flask import request
from flask import json
@app.route('/messages', methods = ['POST'])
def api_message():
if request.headers['Content-Type'] == 'application/json':
foo = request.get_json()
output = ""
for i in foo['Location']:
Item_id = i['Item_id']
Price = i['Price']
output = output + Item_id + Price
# do stuff here later
return output
else:
return "415 Unsupported"
if __name__ == '__main__':
app.run()
我在一个终端上运行上面的代码,当我将JSON数据发布到另一个终端时,我得到“500内部服务器错误”:
curl -H "Content-type: application/json" \ -X POST http://127.0.0.1:5000/messages -d '[{"Location":"1","Item_id":"12345","Price":"$1.99","Text":"ABCDEFG"},{"Location":"2","Item_id":"56489","Price":"$100.99","Text":"HIJKLMNO"},{"Location":"3","Item_id":"101112","Price":"$100,000.99","Text":"PQRST"}]'
答案 0 :(得分:3)
你有列表,所以你需要
for i in foo:
print(i['Location'])
print(i['Item_id')
print(i['Price'])
print(i['Text'])
BTW:下次在调试模式下运行
app.run(debug=True)
您可以在网页上看到更多信息。
答案 1 :(得分:1)
实际上,使用此代码:
for i in foo['Location']:
Item_id = i['Item_id']
Price = i['Price']
output = output + Item_id + Price
# do stuff here later
你说你得到的第一个元素是位置对象。
实际上,当你有多个对象时,你得到的第一个元素是list
的location元素。因此,在使用位置对象之前,必须在此列表上执行循环。
for location_object in foo :
for i in location_object["Location"] :
Item_id = i['Item_id']
Price = i['Price']
output = output + Item_id + Price
# do stuff here later