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 b
You can also use simplejson from django.utils. Like:
simplejson
django.utils
oldAnnotations = lastFrame.videoannotation_set.filter(ParentVideoLabel=label) dump = simplejson.dumps(oldAnnotations) return HttpResponse(dump, mimetype='application/json')
You can parse and reach all data in this from JS side.