欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

利用 Linq+Jquery+Ajax 实现异步分页功能可简化带宽压力

程序员文章站 2023-11-14 20:04:28
在web显示的时候我们经常会遇到分页显示,而网上的分页方法甚多,但都太过于消耗带宽,所以我想到了用ajax来分页,利用返回的json来处理返回的数据,大大简化了带宽的压力。...
在web显示的时候我们经常会遇到分页显示,而网上的分页方法甚多,但都太过于消耗带宽,所以我想到了用ajax来分页,利用返回的json来处理返回的数据,大大简化了带宽的压力。先说下思路,无非就是异步执行ajax 把新列表所需要的数据用json格式返回来,输出table,你可以输出ui li(输出效率高) 在页面上。

效果图:
利用 Linq+Jquery+Ajax 实现异步分页功能可简化带宽压力 
html代码:
复制代码 代码如下:

设置它们的class = "page" 以便于给它们增加click事件操作分页
<div id="showpage" style="width: 650px; margin: 0 auto; display: none" class="pages">
<div style="float: left">
<a id="first" class="pages">首页</a>
<a id="prev" class="pages">上页</a>
<a id="next" class="pages">下页</a>
<a id="last" class="pages">尾页</a>
跳转到第<input type="text" id="txtgopage" style="width: 45px; height: 15px; border: 1px solid" />

</div>
<div style="margin: 0; float: left">
<input type="button" class="pages btn btn-info" id="go" value="跳转" />
共<span id="sumcount"></span> 条数据,每页<span id="itemcount"></span> 条,
当前<span id="index"></span>/<span id="pagecount"></span>页
</div>
</div>
用下面的div输出返回的结果
<div id="divbadproductinfo"></div>

css代码:
复制代码 代码如下:

/*分页*/
.pages {
cursor: pointer;
text-align: center;
margin: 0 auto;
padding-right: 0px;
padding-bottom: 2px;
padding-top: 2px;
font-family: verdana, helvetica, arial, sans-serif;
}

.pages a {
border-right: 1px solid;
padding-right: 6px;
border-top: 1px solid;
padding-left: 6px;
padding-bottom: 0px;
overflow: hidden;
border-left: 1px solid;
line-height: 20px;
margin-right: 2px;
padding-top: 0px;
border-bottom: 1px solid;
height: 30px;
}

.pages a {
border-left-color: #e6e7e1;
border-bottom-color: #e6e7e1;
color: #09c;
border-top-color: #e6e7e1;
background-color: #fff;
border-right-color: #e6e7e1;
}

.pages a:hover {
text-decoration: none;
border-left-color: #09c;
border-bottom-color: #09c;
border-top-color: #09c;
border-right-color: #09c;
}

.pages a.next {
border-left-color: #09c;
border-bottom-color: #09c;
border-top-color: #09c;
border-right-color: #09c;
}

js代码:

引入: <script src="assets/js/jquery-1.8.2.min.js"></script>//可以为其他版本
复制代码 代码如下:

$(document).ready(function ()
{
//检索条件
var search = $("#txtfactroy").val() + "_" + $("#txttimeselect").val()
+ "_" + $("#txtpinfan").val() + "_" +
$('input[type="checkbox"][name="option1"]:checked').val();
$.ajax({
type: "post",<span style="color:#ff0000;">//回传格式
url: "responsehandler.ashx"//回传到一般处理程序中处理//回传参数表示请求的是第几页,encodeuricomponent 格式化中文以防乱码
data: "badproductwhere=" + encodeuricomponent(search) + "&currpage=1",
datatype: "json",//把返回来的数据 json
async: false,//禁止使用浏览器缓存
success: function (returndata, textstatus, xmlhttprequest)
{
$("#showpage").css('display', 'block');//显示分页
$("#divbadproductinfo").html(returndata.split('_')[0]);//返回值分割显示
var page = returndata.split('_')[1].split(',');
$("#sumcount").text(page[0]);//共多少条数据
$("#itemcount").text(page[1]);//每页多少条数据
$("#index").text(page[2]);//当前页
$("#pagecount").text(page[3]);//共多少页 }
});
//清除转向页面
$("#txtgopage").val("");

//分页操作动作
$(".pages").click(function () {
//总页数大于1的情况下上下首末页可用
if (parsefloat($("#pagecount").html()) > 1) {
//取得控件类型是id还是class
var type = $(this).attr("id");
//取得当前是多少页
var thisindex = $("#index").text();
var search = $("#txtfactroy").val() + "_" + $("#txttimeselect").val()
+ "_" + $("#txtpinfan").val() + "_" +
$('input[type="checkbox"][name="option1"]:checked').val();
switch (type) {
case 'first':
{
$("#txtgopage").val("");
badpageindex = 1;
badpageindex(1, search);//ajax 回传函数
return;
}
case 'prev':
{
$("#txtgopage").val("");
badpageindex = parseint(thisindex) - 1;
if (badpageindex < 1) return;
badpageindex(badpageindex, search);
return;
}
case 'next':
{
$("#txtgopage").val("");
badpageindex = parseint(thisindex) + 1;
if (badpageindex > parseint($("#pagecount").html())) return;
else
badpageindex(badpageindex, search);
return;
}
case 'last':
{
var max = parseint($("#pagecount").html());
$("#txtgopage").val("");
badpageindex = max;
badpageindex(max, search);
return;
}
case 'go':
{
var _go = $("#txtgopage").val();
badpageindex = _go;
badpageindex(_go, search);
return;
}
}
}
})
});

复制代码 代码如下:

var badpageindex;
//index,页面索引例如1,2,3
//badproductwhere 查询条件
function badpageindex(index, searchwhere) {
$.ajax({
type: "post",
url: "responsehandler.ashx",
data: "badproductwhere=" + encodeuricomponent(searchwhere) + "&currpage=" + index,
datatype: "json",
async: false,
success: function (returndata, textstatus, xmlhttprequest) {
$("#divdisplay").css('display', 'none');
$("#showpage").css('display', 'block');
$("#divbadproductinfo").html(returndata.split('_')[0]);
var page = returndata.split('_')[1].split(',');
$("#sumcount").text(page[0]);
$("#itemcount").text(page[1]);
$("#index").text(page[2]);
$("#pagecount").text(page[3]);
},
error: function () {
alert("服务错误");
}
});

}

c# 代码:(responsehandler.ashx)
复制代码 代码如下:

/// <summary>
/// 每页显示条数
/// </summary>
private int pagesize = 20;
stringbuilder sbbadproductinfo = new stringbuilder();
if (!string.isnullorempty(context.request["badproductwhere"]) &&
!string.isnullorempty(context.request["currpage"]))
{
#region // b品标题信息
sbbadproductinfo.append(@"<div class='row-fluid'>
<div class='span12 widget'><div class='widget-header'>
<span class='title'>
<i class='icol-blog'></i>b品箱单信息
</span>
</div>");
sbbadproductinfo.append(@"<div class='widget-content summary-list'>
<div class='row-fluid' style='padding-top: 2px;'>
<div class='span12 section'>
<table class='table table-bordered table-striped'>
<thead>
<tr>
<th>箱单编号</th>
<th>装箱生成日期</th>
<th>工厂名称</th>
<th>装箱品番</th>
<th>装箱箱号</th>
<th>装箱件数</th>
<th>仓库确认</th>
<th>出库确认人</th>
<th>出库日期</th>
<th>查看明细</th>
</tr>
</thead><tbody>");
#endregion
list<bstate_view> lstgetbadproductdata = (from p in lstgetbadproductdata
where !string.isnullorempty(p.出库确认人) && p.出库日期 != null
select p).tolist<bstate_view>();
string pageinfo = lstgetbadproductdata.count() + "," + pagesize + "," + context.request["currpage"] +
"," + (lstgetbadproductdata.count() % 20 == 0 ? (lstgetbadproductdata.count() / 20) :
(lstgetbadproductdata.count() / 20 + 1));
list<bstate_view> lstgetbaditemdata = (lstgetbadproductdata.count > pagesize ?
lstgetbadproductdata.skip(int.parse(context.request["currpage"]) == 1 ? 0 :
pagesize * (int.parse(context.request["currpage"]) - 1)).take(pagesize)
: lstgetbadproductdata).tolist<bstate_view>();
#region ==>b品箱单信息
foreach (var item in lstgetbaditemdata)
{
var cssname = rowcount % 2 == 0 ? "warning" : "error";
sbbadproductinfo.append(@"<tr class='" + cssname + "'>");
sbbadproductinfo.append(@"<td>" + item.箱单编号 + "</td>");
sbbadproductinfo.append(@"<td>" + item.装箱生成日期 + "</td>");
sbbadproductinfo.append(@"<td>" + item.工厂名称 + "</td>");
sbbadproductinfo.append(@"<td>" + item.装箱品番 + "</td>");
sbbadproductinfo.append(@"<td>" + item.装箱箱号 + "</td>");
sbbadproductinfo.append(@"<td>" + item.装箱件数 + "</td>");
sbbadproductinfo.append(@"<td>" + item.仓库确认 + "</td>");
sbbadproductinfo.append(@"<td>" + item.出库确认人 + "</td>");
sbbadproductinfo.append(@"<td>" + item.出库日期 + "</td>");
sbbadproductinfo.append(@"<td><input type='button' class='btn btn-primary'
style='width: 80px; height: 30px;' value='查看明细'");
sbbadproductinfo.append(@" onclick='openbadinfo(" + item.箱编号 + ");'/></td></tr>");
rowcount++;
}
sbbadproductinfo.append(@"</tbody></table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>");
#endregion

context.response.write(sbbadproductinfo.tostring() + "_" + pageinfo);
context.response.end();

分页效果:
利用 Linq+Jquery+Ajax 实现异步分页功能可简化带宽压力
利用 Linq+Jquery+Ajax 实现异步分页功能可简化带宽压力
利用 Linq+Jquery+Ajax 实现异步分页功能可简化带宽压力