[Answer]-How do you use MultipleChoiceField with a get request?

1👍

GET is a QueryDict object, which has special behavior when multiple values are submitted in the HTTP GET for the same key. To get all of them, use the getlist method. Alternatively, just use a form – the form field will collect the multiple values for you.

Leave a comment