如何在jQuery中处理来自Hibernate的列表数据的数据

时间:2013-05-16 14:02:47

标签: jquery

js页面中的代码如下

$('#showAll').click(function(){
    $.ajax({
        type : 'GET',
        url  :  rootURL,
    dataType : 'json',
 contentType : 'application/json',
     success : function(data){              
                    $('#empList tbody').remove();
                    var employee =data.employee;
                    alert(employee.ID+"---"+employee.name);
                    $(employee).each(function(){
                        $('#empList').append('<tbody><tr><td><a  href="#" id="' + $(this).ID + '">' +
                        $(this).find('ID').text()+'</a></td><td> ' + $(this).find('name').text()+ '</td><td> ' +
                        $(this).find('sal').text()+'</td></tr></tbody>');
                    });
                }
    });
});

回应如下。我怎么能在jQuery中操作

{"employee":[{"ID":"1","name":"vcv","sal":"4545"},{"ID":"2","name":"dfdf","sal":"dfdf"}]}

1 个答案:

答案 0 :(得分:0)

您可以在success方法中执行此操作:

var employee = data.employee;
$.each(employee, function (index, value) {
    $('#empList').append(value.ID + ' ' + value.name + ' ' + value.sal);
});