sql >> Base de Datos >  >> RDS >> Mysql

Django pasando datos JSON a getJSON/Javascript estático

Representación html principal + datos json

import json
from django.shortcuts import render

def startpage(request):
    platforms = Platform.objects.select_related().values('platformtype')
    return render(request, 'Main.html', {'platforms_as_json': json.dumps(list(platforms)),})

en plantilla

{{ platforms_as_json }}

html y js

<select id="platformList"></select>

<script>
    $.each({% autoescape off %}{{platforms_as_json}}{% endautoescape %}, function (index, item) {
        $('#platformList').append(
                $('<option></option>').val(item.platformtype).html(item.platformtype)
        )
    });
</script>

Ejemplo antiguohttps://gist.github.com/leotop/014a38bd97407a6380f2526f11d17977