afterAjax: function(list) {
if (list.length > 0) {
_.each(list, function(v, i) {
if (v.flag == 0) {
v.flag = "否";
} else if (v.flag == 1) {
v.flag = "是";
};
});
}
return list;
},
在这个里面的each方法便利这个list集合,回调函数中第一个参数不应该是索引吗??
$.each(this.tableModel.model, function(i, v) {
columns.push({
title: v.name,
data: v.code,
width: v.width,
"visible": v.visible === false ? false : true,
className: v.className,
"render": v.render,
"targets": i + startTarget + 1
});
that.column.push(v.code);
});
在这里面的回调函数第一个参数i应该是索引吧?
添加回答
举报
0/150
提交
取消