Reputation: 705
I'm sending the following JSON to my webservice:
{
"message": "Hello!",
"people": ["Aaron", "Randy", "Chris", "Andrew"]
}
And when I access the QueryDict, dict['people'] returns the last item in the list, Andrew, not the list. What am I doing wrong?
When inspecting the object:
Upvotes: 0
Views: 197