Issue
I have a python code which converts the normal dict into JSON as follows
groups = {
'g_1': [
{'name': 'something', 'id': '1'},
{'name': 'something', 'id': '1'}
],
'g_2': [
{'name': 'something', 'id': '1'},
{'name': 'something', 'id': '1'}
]
}
I have used json.dumps to convert that to a json as follows
import json
groups = json.dumps(groups)
I want to read the data in javascript as an object. How to I access it?
I tried var groups=JSON.parse({{ groups }})
it didn't work out.
Help me in parsing the data as javascript object.
Solution
This should work:
var groups = JSON.parse('{{ groups|safe }}');
Answered By - nik_m
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.