I’m dumping JSON in Django view and then parsing JSON in JS to get the data.
My view.py (Django)
JavaScript
x
8
1
ibms = []
2
for i in range(2, 5):
3
ibm = Mapa(i, wsMapa)
4
ibms.append(ibm.__dict__)
5
ibms = json.dumps(ibms)
6
7
return render(request, 'mapas/index.html', {'ibms': ibms})
8
The ibm
variable output in Django template is:
JavaScript
1
2
1
[{"numeroIbm": "AUTO P"}, {"numeroIbm": "PTB"}, {"numeroIbm": "FAROL"}]
2
My index.html (JS inside)
JavaScript
1
6
1
{{ ibms|json_script:"ibms" }}
2
<script>
3
const mydata = JSON.parse(document.getElementById("ibms").textContent);
4
const mydata2 = JSON.parse(mydata);
5
</script>
6
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
1
3
1
ibms = [Mapa(i, wsMapa).__dict__ for i in range(2, 5)]
2
3
return render(request, 'mapas/index.html', {'ibms': ibms})
and thus parse it as:
JavaScript
1
5
1
{{ ibms|json_script:"ibms" }}
2
<script>
3
const mydata = JSON.parse(document.getElementById("ibms").textContent);
4
// no second parse
5
</script>