Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Returning JSON array from a Django view to a template

I'm using Django to create a web-based app for a project, and I'm running into issues returning an array from a Django view to a template.

The array will be used by a JavaScript (JQuery) script for drawing boxes on an image shown in the page. Therefore, this array will have, among other things, coordinates for the boxes to be drawn.

This is the code in the Django view used to get the required data and serialize it as JSON:

def annotate(request, ...):     ...     oldAnnotations = lastFrame.videoannotation_set.filter(ParentVideoLabel=label)     tags = serializers.serialize("json", oldAnnotations)     ...     return render_to_response('vannotate.html', {'tags': tags, ...}) 

As a way of debugging, using {{ tags }} in the HTML portion of the template gives this as output (sorry for the long line):

[{"pk": 491, "model": "va.videoannotation", "fields": {"ParentVideoFile": 4, "ParentVideoFrame": 201, "ParentVideoLabel": 4, "top": 220, "height": 30, "width": 30, "ParentVideoSequence": 16, "left": 242}}, {"pk": 492, "model": "va.videoannotation", "fields": {"ParentVideoFile": 4, "ParentVideoFrame": 201, "ParentVideoLabel": 4, "top": 218, "height": 30, "width": 30, "ParentVideoSequence": 16, "left": 307}}] 

which I assume is the correct format for a JSON array.

Later on in the template, I attempt to actually use the tags variable in the JavaScript portion of the template, as follows:

{% if tags %}   var tagbs = {{ tags|safe }};   var tgs = JSON.parse(tagbs);   alert("done"); {% endif %} 

If I remove the var tgs = JSON.parse(tagbs); line, then the alert box pops up fine, and the rest of the JavaScript works as expected. Leaving this line in breaks the script, however.

I want to be able to iterate through all the objects in the Django model and get values of fields in JavaScript.

I'm not sure what I'm doing wrong here, could someone point out the right way to do this?

like image 611
DefPlayr Avatar asked Mar 23 '13 22:03

DefPlayr


People also ask

How do I return JSON data in Django?

Returning a JSON response from a Django Model. To return a queryset of python object as JSON, we first have to convert it into a Python dictionary. The process of converting one data type to another is called serialization. We import the serialize function.

What does the Django's JsonResponse do?

Django JsonResponse JsonResponse is an HttpResponse subclass that helps to create a JSON-encoded response. Its default Content-Type header is set to application/json. The first parameter, data , should be a dict instance.


2 Answers

Edit with update for Django 2.1+ and the modern web:

The modern way to do this is:

1) Pass the raw data to the template, not the JSON-serialised data. I.e.:

def annotate(request, ...):     ...     oldAnnotations = lastFrame.videoannotation_set.filter(ParentVideoLabel=label)     ...     return render_to_response('vannotate.html', {'tags': oldAnnotations, ...}) 

2) In your template, use the new "json_script" filter to include the JSON data:

{{ tags|json_script:"tags-data" }} 

That will result in HTML that looks like this:

<script id="tags-data" type="application/json">{"foo": "bar"}</script> 

This tag has special handling of strings containing "</script>" to make sure they work.

3) In your Javascript code, get that tags data like this:

var tags = JSON.parse(document.getElementById('tags-data').textContent); 

4) Move your Javascript code to an external .js file, and set up the Content-Security-Policy header to prohibit inline Javascript because it's a security risk. Note that since the json_script tag generates JSON, not Javascript, it's safe and is allowed regardless of your Content-Security-Policy setting.

Original Answer:

WARNING: If any of the strings are user-controlled, this is insecure

JSON is Javascript source code. I.e. the JSON representation of an array is the Javascript source code you need to define the array.

So after:

var tagbs = {{ tags|safe }}; 

tagbs is a JavaScript array containing the data you want. There's no need to call JSON.parse(), because the web browser already parsed it as JavaScript source code.

So you should be able to do

var tagbs = {{ tags|safe }}; alert(tagbs[0].fields.ParentVideoFile); 

and that should show "4".

WARNING: With this old method, strings containing "</script>" will not work, they will go horribly wrong. This is because the browser will treat </script> as the end of the script. If any of the strings are user-entered data, this is an exploitable security flaw - see comment 14 here for more details. Use the more modern method above, instead.

like image 123
user9876 Avatar answered Sep 22 '22 15:09

user9876


You want to JSON-ify the data in the template; JSON is already Javascript really (it's a subset:

{% if tags %}   var tgs = {{ tags }}; {% endif %} 

Note that tags is already JSON (thus JavaScript) data and can be inserted directly; no need to escape (there is no HTML here, it's JavaScript instead).

Or you could use this Django snippet and do it straight in the template (no need to call serializers.serialize in the annotate method):

var tgs = {{ tags|jsonify }}; 
like image 34
Martijn Pieters Avatar answered Sep 24 '22 15:09

Martijn Pieters