Reputation: 26728
I have a django view that gets data from request.GET
def get_values_from_GET(request):
print request.GET, >>>>
print request.get('ids[]', None)
return redirect('hurray')
Output
<QueryDict: {u'ids[]': [u'15', u'14']}> >>>>
14 >>>>
So i can able to see the list of values in request.GET
, but can see only one value when trying to access, so y this happening ?
Upvotes: 2
Views: 222