标签:size result this 判断 table ges 前端 大于 ice
-前端分页(dsTable为数据源)
var result = [];
for(var i=0,j=this.dsTable.length;i<j;i += _this.pageSize){
result.push(this.dsTable.slice(i,i + _this.pageSize));
}
this.dsTable = [];
this.dsTable = result[_this.currentPage -1];
-New:在第二页查询的时候会出问题,要加判断 当前数据长度是否大于pagesize,大于再分页,不大于就把当前页置为1,再分页
if(_this.dsTable.length > _this.pageSize){
}else{
_this.currentPage = 1;
}
标签:size result this 判断 table ges 前端 大于 ice
原文地址:https://www.cnblogs.com/huangbinlooksgood/p/14198259.html