In a Django view I am generating a data set something like this:
JavaScript
x
2
1
data = [22, 23, 18, 19, 21, None, 22, 20]
2
I am passing this data to a JavaScript variable using:
JavaScript
1
2
1
data_json = simplejson.dumps(data)
2
For use in a High Charts script.
Unfortunately JavaScript is stumbling when it encounters the None
value because actually what I need is null
. How can I best replace None
with null
, and where should I handle this – in the Django View or in the JavaScript?
Advertisement
Answer
If you’re using Python 2.6 or later, you can use the built-in json module:
JavaScript
1
4
1
>>> import json
2
>>> json.dumps([1, 2, 3, None, 4])
3
'[1, 2, 3, null, 4]'
4