TemplateView serialize some context data to json

1.1k Views Asked by At

I've found many related question, but with no luck =(

views

from django.core import serializers

class LargeMapView(TemplateView):
    template_name = 'map/index.html'

    def get_context_data(self, **kwargs):
        context = super(LargeMapView, self).get_context_data(**kwargs)
        human_values = Human.objects.all()
        search_work_values = SearchWork.objects.all()

        # context['human_data'] = json.dumps(list(human_values))
        # context['search_work_data'] = json.dumps(list(search_work_values), cls=DjangoJSONEncoder)

        context['human_data'] = serializers.serialize('json', human_values)
        context['search_work_data'] = serializers.serialize('json', search_work_values)

    return context

template

<script type="text/javascript">
       var lala = {{ human_data }};
</script>

In result I have Uncaught SyntaxError: Unexpected token & :

 var lala = [{&quot;pk&quot;: 13, &quot;model&quot;: &quot;human.human&quot;, &quot;fields&quot;: {&quot;burial_type&quot;: null, &quot;last_name&quot;: &quot;&quot;, ...
1

There are 1 best solutions below

0
On BEST ANSWER

Ok seems I've resolved it

{{ human_data|safe }}

or using mark_safe in views

mark_safe(serializers.serialize('json', human_values, fields=('pk', 'fio', 'lat', 'lon')))