[Answer]-Entire array interpreted as last element in array

1👍

Use getlist to retrieve multiple values.

request.POST.getlist('email_list[]')

This is documented behavior:

If the key has more than one value, __getitem__() returns the last value.

Leave a comment