标签: python json django
我将以下JSON发送到我的网络服务:
{ "message": "Hello!", "people": ["Aaron", "Randy", "Chris", "Andrew"] }
当我访问QueryDict时,dict [' people']返回列表中的最后一项,Andrew,而不是列表。我做错了什么?
检查对象时:
答案 0 :(得分:2)
使用getlist()方法:
getlist()
people = request.GET.getlist('people')