Mysql
 sql >> Database >  >> RDS >> Mysql

Django passa i dati JSON a getJSON/Javascript statico

Rendering html principale + dati 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)),})

nel modello

{{ platforms_as_json }}

html e 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>

Vecchio esempiohttps://gist.github.com/leotop/014a38bd97407a6380f2526f11d17977