Skip to content
Advertisement

Trouble when parsing JSON string

I’m dumping JSON in Django view and then parsing JSON in JS to get the data.

My view.py (Django)

JavaScript

The ibm variable output in Django template is:

JavaScript

My index.html (JS inside)

JavaScript

The issue is: I’m having to JSON.parse double times to get the JS object. The variable mydata, despite the JSON.parse, is string typeof. I only get the final result when I JSON.parse for the second time (mydata2).

What is happening, pls?

Tks in advance!

Advertisement

Answer

You should not dump it in the view, so:

JavaScript

and thus parse it as:

JavaScript
Advertisement