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

jQuery内置的AJAX功能和JSON的使用实例教程

程序员文章站 2023-10-31 23:24:28
通过jquery内置的ajax功能,直接访问后台获得json格式的数据,然后通过jquer把数据绑定到事先设计好的html模板上,直接在页面上显示。 我们先来看一下html模板:...

通过jquery内置的ajax功能,直接访问后台获得json格式的数据,然后通过jquer把数据绑定到事先设计好的html模板上,直接在页面上显示。
我们先来看一下html模板:

<table id="datas" border="1" cellspacing="0" style="border-collapse: collapse">
<tr>
<th>
订单id</th>
<th>
客户id</th>
<th>
雇员id</th>
<th>
订购日期</th>
<th>
发货日期</th>
<th>
货主名称</th>
<th>
货主地址</th>
<th>
货主城市</th>
<th>
更多信息</th>
</tr>
<tr id="template">
<td id="orderid">
</td>
<td id="customerid">
</td>
<td id="employeeid">
</td>
<td id="orderdate">
</td>
<td id="shippeddate">
</td>
<td id="shippedname">
</td>
<td id="shippedaddress">
</td>
<td id="shippedcity">
</td>
<td id="more">
</td>
</tr>
</table>

一定要注意的就是里面所有的id属性,这个是一个关键。再来看一下ajax请求和绑定数据的代码

$.ajax({
type: "get",//使用get方法访问后台
datatype: "json",//返回json格式的数据
url: "backhandler.ashx",//要访问的后台地址
data: "pageindex=" + pageindex,//要发送的数据
complete :function(){$("#load").hide();},//ajax请求完成时隐藏loading提示
success: function(msg){//msg为返回的数据,在这里做数据绑定
var data = msg.table;
$.each(data, function(i, n){
var row = $("#template").clone();
row.find("#orderid").text(n.订单id);
row.find("#customerid").text(n.客户id);
row.find("#employeeid").text(n.雇员id);
row.find("#orderdate").text(changedate(n.订购日期));
if(n.发货日期!== undefined) row.find("#shippeddate").text(changedate(n.发货日期));
row.find("#shippedname").text(n.货主名称);
row.find("#shippedaddress").text(n.货主地址);
row.find("#shippedcity").text(n.货主城市);
row.find("#more").html("<a href=orderinfo.aspx?id=" + n.订单id + "&pageindex="+pageindex+"> more</a>"); 
row.attr("id","ready");//改变绑定好数据的行的id
row.appendto("#datas");//添加到模板的容器中
});

这个是jquery的ajax方法,返回数据并不复杂,主要说明一下怎么把数据按模板的定义显示到到页面上。首先是这个“var row = $("#template").clone();”先把模板复制一份,接下来row.find("#orderid").text(n.订单id);,表示找到id=orderid的标记,设置它的innertext为相应的数据,当然也可以设置为html格式的数据。或者是通过外部的函数把数据转换成需要的格式,比如这里row.find("#orderdate").text(changedate(n.订购日期));有点服务器控件做模板绑定数据的感觉。
所有的这些,都是放在一个静态的页面里,只通过ajax方法从后台获取数据,所有html代码如下:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>test1</title>

<script language="javascript" type="text/javascript" src="js/jquery-latest.pack.js"></script>

<script language="javascript" type="text/javascript" src="js/pagedate.js"></script>

</head>
<body>
<p>
 <p>
<br />
<input id="first" type="button" value=" << " /><input id="previous" type="button"
value=" < " /><input id="next" type="button" value=" > " /><input id="last" type="button"
value=" >> " />
 <span id="pageinfo"></span>
<table id="datas" border="1" cellspacing="0" style="border-collapse: collapse">
<tr>
<th>
订单id</th>
<th>
客户id</th>
<th>
雇员id</th>
<th>
订购日期</th>
<th>
发货日期</th>
<th>
货主名称</th>
<th>
货主地址</th>
<th>
货主城市</th>
<th>
更多信息</th>
</tr>
<tr id="template">
<td id="orderid">
</td>
<td id="customerid">
</td>
<td id="employeeid">
</td>
<td id="orderdate">
</td>
<td id="shippeddate">
</td>
<td id="shippedname">
</td>
<td id="shippedaddress">
</td>
<td id="shippedcity">
</td>
<td id="more">
</td>
</tr>
</table>
</p>
<p id="load" style="left: 0px; position: absolute; top: 0px; background-color: red">
loading....
</p>
<input type="hidden" id="pagecount" />
</p>
</body>
</html>

pagedata.js就是包括上面ajax请求和绑定数据代码的js,整个页面连form都不用,这样做有什么好处呢。再看下面一个模板

<ul id="datas">
<li id="template">
<span id="orderid">
fsdfasdf
</span>
<span id="customerid">
</span>
<span id="employeeid">
</span>
<span id="orderdate">
</span>
<span id="shippeddate">
</span>
<span id="shippedname">
</span>
<span id="shippedaddress">
</span>
<span id="shippedcity">
</span>
<span id="more">
</span>
</li>
</ul>

还 是要注意id属性。大家看到这里应该明白了,不管用什么样的表现形式,只要id属性相同,就可以把数据绑定到对应的位置。这样的话,我们这些做程序的就不 会因为美工的修改而修改代码了,而且美工也只要做出html就可以了,不需要为服务器控件做模板(不过我还没遇到过这样的美工,都是美工设计好了我来改成 服务器控件的模板)。

再简单说一下ajax请求的后台,用的是access的northwind,把订单表放到datatable里,然后通过datatable2json转化成json数据格式传回来就完了,不过后台用了一些分页和缓存的方法,希望对初学者有一些帮助。