DictQuery + Django + AJAX

My problem is simple, I had developed an application in DJANGO. I turn a CSV into JSON files but I have a format problem.

<QueryDict: {'data': ['[{data }]']}>

On the left, the ]} is not correct. The AJAX script is correct. The data send to JavaScript is properly. The format in JSON is ok on the JavaScript side but the Django side, there are this error in the format.

How shoud I do to remove that ?

Thanks a lot!

Back to Top