JSON data for UL

I get json data from ajax and I think I'm close to this, but for some reason my UL is not populating, and I cannot find debugging information to help.

Can someone point me in the right direction?

json data : 

{"data":[{"racer_id":73,"racing_nbr":"4","entry_id":131},
{"racer_id":9,"racing_nbr":"48","entry_id":132},
{"racer_id":525,"racing_nbr":"7","entry_id":133},
{"racer_id":534,"racing_nbr":"11","entry_id":134},
{"racer_id":213,"racing_nbr":"72","entry_id":135},
{"racer_id":574,"racing_nbr":"66f","entry_id":136}]}


$('.list-group-item').click(function() {
var data = 'class_id='+ $(this).attr('rel') + '&event_id=' +<?php echo $_GET['event_id']; ?>
// POST to server using $.post or $.ajax
$.ajax({
    data: data,
    type: 'GET',
    dataType: 'JSON',
    url: 'php/builder/getRidersScoringHeats.php',
    success: function(data) {
      var obj = data,  // get entry object (array) from JSON data
      ul = $("#sortable");                    // create a new ul element
        // iterate over the array and build the list
          for (var i = 0, l = obj.length; i < l; ++i) {
            ul.append("<li class='ui-state-default' id='item-" + obj[i].entry_id + "'>" + obj[i].racing_nbr + " - " + obj[i].racer_id + "</li>");
          }
      $("#sortable").append(ul);    // add the list to the DOM
  }
 });
});

Any help would be greatly appreciated.

Thanks in advance.

+4
source share
2 answers

In your case, it dataactually contains an object with a name data, which is an array of arrays objects.

To make it easy:

$.each(data.data, function(i, info){
    ul.append("<li class='ui-state-default' id='item-" + info.entry_id + "'>" + info.racing_nbr + " - " + info.racer_id + "</li>");
});
+3
source

data - , obj, , obj.length - . length. , , ​​ underscore.js, .

. : JavaScript

+2

Source: https://habr.com/ru/post/1622038/


All Articles