使用QueryDict时丢失的项目列表

时间:2015-02-20 03:07:41

标签: python json django

我将以下JSON发送到我的网络服务:

{
"message": "Hello!",
"people": ["Aaron", "Randy", "Chris", "Andrew"]
}

当我访问QueryDict时,dict [' people']返回列表中的最后一项,Andrew,而不是列表。我做错了什么?

检查对象时: enter image description here

1 个答案:

答案 0 :(得分:2)

使用getlist()方法:

people = request.GET.getlist('people')