Kim Hyunsoo

Results 2 comments of Kim Hyunsoo

@glemmaPaul It seems like serializer is having trouble with [Querydict](https://docs.djangoproject.com/en/1.11/ref/request-response/#django.http.QueryDict). To deal with multiple values for the same key, Querydict stores each value with the same key in a list....

I found the forum article says [request.data is sometimes QueryDict, sometimes normal dict](https://groups.google.com/forum/#!topic/django-rest-framework/_9cg6trvbAk). Maybe converting request.data from QueryDict to dict in views.py can temporally solve the problem..