jQuery:在Ajax调用之后获取数组中的第一个对象

时间:2016-07-28 01:06:52

标签: javascript jquery ajax

我尝试在执行each()循环之前获取ajax调用返回的第一个对象。以下是适用于每个代码的代码:

$.each(obj.DATA, function(indexInArray, value) {
            var depts = value[departmentListIndex];
            console.log("test",depts);
          });

我想做的是:

$.each.first(obj.DATA, function(indexInArray, value) {
            var depts = value[departmentListIndex];
            console.log("test",depts);
          });

但是我收到了这个错误:

VM1172:38 Uncaught TypeError: $.each.first is not a function

做$ .get(obj.DATA).....也不起作用。

1 个答案:

答案 0 :(得分:0)

$.each.first(obj.DATA[0], function(indexInArray, value) {
    var depts = value[departmentListIndex];
    console.log("test",depts);
});