我尝试在执行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).....也不起作用。
答案 0 :(得分:0)
$.each.first(obj.DATA[0], function(indexInArray, value) {
var depts = value[departmentListIndex];
console.log("test",depts);
});