jquery ajax文件的层级管理,jQuery Ajax和getJSON获取后台普通json数据和层级json数据用法分析...

本文实例讲述了jQuery Ajax和getJSON获取后台普通json数据和层级json数据用法。分享给大家供大家参考,具体如下:

运行效果截图如下:

51344a02291816e8c53d763b0246bd34.png

具体代码如下:

/p>

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

Ajax和getJSON获取后台普通Json数据和层级Json数据解析

$(function () {

//方式一 Ajax方式获取Json数据

$.ajax({

url: 'jsondata.ashx?type=1',

type: 'GET',

dataType: 'json',

timeout: 1000,

cache: false,

beforeSend: LoadFunction, //加载执行方法

error: erryFunction, //错误执行方法

success: succFunction //成功执行方法

})

function LoadFunction() {

$("#list").html('加载中...');

}

function erryFunction() {

alert("error");

}

function succFunction(tt) {

var json = eval(tt); //数组

var tt = "";

$.each(json, function (index) {

//循环获取数据

var Id = json[index].id;

var Name = json[index].name;

var Age = json[index].age;

var Score = json[index].score;

tt += Id + "___" + Name + "___" + Age + "___" + Score + "
";

});

$("#list").html('');

$("#list").html(tt);

}

//方式二 Json方式获取数据

$.getJSON(

"jsondata.ashx?type=1",

function (data) {

//循环获取数据

var tt = "";

$.each(data, function (k, v) {

$.each(v, function (kk, vv) {

tt += kk + ":" + vv + "___";

});

tt += "
";

});

$("#list2").html(tt);

}

);

//方式三 Ajax方式获取Json层级数据

$.ajax({

url: 'jsondata.ashx?type=3',

type: 'GET',

dataType: 'json',

timeout: 1000,

cache: false,

beforeSend: LoadFunction1, //加载执行方法

error: erryFunction1, //错误执行方法

success: succFunction1 //成功执行方法

})

function LoadFunction1() {

$("#list3").html('加载中...');

}

function erryFunction1() {

alert("error");

}

function succFunction1(tt) {

var json = eval(tt); //数组

var tt = "";

$.each(json, function (index) {

//循环获取数据

var Id = json[index].id;

var Name = json[index].name;

var Age = json[index].age;

var Score = json[index].score;

tt += Id + "___" + Name + "___" + Age + "___";

$.each(Score, function (k, v) {

tt += k + ":" + v + "___";

})

tt += "
";

});

$("#list3").html('');

$("#list3").html(tt);

}

//方式四 Json方式获取层级数据

$.getJSON(

"jsondata.ashx?type=3",

function (json) {

//循环获取数据

var tt = "";

$.each(json, function (index) {

//循环获取数据

var Id = json[index].id;

var Name = json[index].name;

var Age = json[index].age;

var Score = json[index].score;

tt += Id + "___" + Name + "___" + Age + "___";

$.each(Score, function (k, v) {

tt += k + ":" + v + "___";

})

tt += "
";

});

$("#list4").html('');

$("#list4").html(tt);

}

);

});

方式一

____________________________________

方式二

____________________________________

方式三

____________________________________

方式四

using System;

using System.Web;

using System.Web.Script.Serialization;

using System.IO;

using System.Text;

using System.Collections;

using System.Collections.Generic;

using System.Data;

using Newtonsoft.Json;

public class jsondata : IHttpHandler {

public void ProcessRequest(HttpContext context)

{

context.Response.ContentType = "text/plain";

context.Response.Cache.SetNoStore();

string type = context.Request["type"];

if (type=="1") //普通数据

{

List> aa = new List>();

for (int i = 0; i < 6; i++)

{

Dictionary aaa = new Dictionary();

aaa.Add("id", "no" + i);

aaa.Add("name", "张三" + i);

aaa.Add("age", "21");

aaa.Add("score", "1001");

aa.Add(aaa);

}

string json = JsonConvert.SerializeObject(aa, Formatting.Indented);

context.Response.Write(json);

}

if (type == "3") //层级数据

{

List list = new List();

for (int i = 0; i < 6; i++)

{

Student a = new Student();

a.id = "no" + i;

a.name = "张三" + i;

a.age = "21";

Dictionary dic = new Dictionary();

dic.Add("语文","80");

dic.Add("数学", "81");

dic.Add("英语", "83");

dic.Add("生物", "89");

dic.Add("化学", "90");

dic.Add("物理", "95");

a.score = dic;

list.Add(a);

}

string json = JsonConvert.SerializeObject(list, Formatting.Indented);

context.Response.Write(json);

}

}

public struct Student

{

public string id;

public string name;

public string age;

public Dictionary score;

}

public bool IsReusable

{

get

{

return false;

}

}

}

希望本文所述对大家jQuery程序设计有所帮助。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值