My request.POST is like this:
QueryDict: <QueryDict: {u'rows[]': [u'4f58707ba5e97c09d5000003', u'4f5881a3a5e97c0ba8000000']}>
I am trying to get those values into an array. But my code
request.POST['rows[]']
results only '4f5881a3a5e97c0ba8000000' Why? How can I take both of the values into an array?