QueryDict
is not a standard Python dictionary. It’s a subclass of MultiValueDict
: https://code.djangoproject.com/browser/django/tags/releases/1.3.1/django/utils/datastructures.py#L223 You can get both items by using request.POST.getlist('rows[]')
.
1
solved How to get values from this dictionary string from Django?