jQuery Ajax和getJSON擷取後台普通json資料和層級json資料用法分析_jquery

來源:互聯網
上載者:User

本文執行個體講述了jQuery Ajax和getJSON擷取後台普通json資料和層級json資料用法。分享給大家供大家參考,具體如下:

運行效果截圖如下:

具體代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>  <title>Ajax和getJSON擷取後台普通Json資料和層級Json資料解析</title>  <script src="JS/jquery-1.8.0.min.js" type="text/javascript"></script>  <script type="text/javascript">    $(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 + "<br>";        });        $("#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 += "<br/>";          });          $("#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 += "<br/>";        });        $("#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 += "<br/>";          });          $("#list4").html('');          $("#list4").html(tt);        }      );    });  </script></head><body>  <p>方式一</p>  <ul id="list">  </ul>  ____________________________________  <p>方式二</p>  <ul id="list2">  </ul>  ____________________________________  <p>方式三</p>  <ul id="list3">  </ul>  ____________________________________  <p>方式四</p>  <ul id="list4">  </ul></body></html>
<%@ WebHandler Language="C#" Class="jsondata" %>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<Dictionary<String, String>> aa = new List<Dictionary<string, string>>();      for (int i = 0; i < 6; i++)      {        Dictionary<String, String> aaa = new Dictionary<string, string>();        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<Student> list = new List<Student>();      for (int i = 0; i < 6; i++)      {        Student a = new Student();        a.id = "no" + i;        a.name = "張三" + i;        a.age = "21";        Dictionary<string, string> dic = new Dictionary<string, string>();        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<string,string> score;  }  public bool IsReusable  {    get    {      return false;    }  }}

更多關於jQuery相關內容感興趣的讀者可查看本站專題:《jquery中Ajax用法總結》、《jQuery表格(table)操作技巧匯總》、《jQuery拖拽特效與技巧總結》、《jQuery擴充技巧總結》、《jQuery常見經典特效匯總》、《jQuery動畫與特效用法總結》、《jquery選取器用法總結》及《jQuery常用外掛程式及用法總結》

希望本文所述對大家jQuery程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.