Skip to content
Advertisement

Convert Python None to JavaScript null

In a Django view I am generating a data set something like this:

JavaScript

I am passing this data to a JavaScript variable using:

JavaScript

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

See http://docs.python.org/library/json.html

Advertisement