var custom = {{ custom_list | safe }}
var obj = JSON.parse(custom);
$('#compclass').html("<option>"+obj[0].fields.name+"</option>")
html是替换html当中内容,append是加入
for(var i=0;i<obj.length;i++){
$('#compclass').append("<option>"+obj[i].fields.name+"</option>")
}