JSON 格式
json 是 Ajax 中使用頻率最高的數(shù)據(jù)格式,在瀏覽器和服務(wù)器中之間的通訊可離不開它。
JSON 格式說明
需要特別注意的是,在 JSON 中的屬性名是需要使用引號引起來的。
1.下載安裝jquery
可通過下面的方法引入在線版本的js:
<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
參考安裝文檔:http://www.gxlcms.com/zt/jquerydown.htm
2.準備一個json格式的文件,后綴可以不是.json
例如下面是result.json的格式
{ "title":"【UI測試結(jié)果】-轉(zhuǎn)轉(zhuǎn)2017/1/23 14:47", "starttime":"2017/1/23 15:00 45", "endtime":"2017/1/23 15:01 42", "passcount":10, "failurecount":5, "resultinfo":[ { "name":"發(fā)布", "moudle":"Publish", "pass":"true", "onecepass":"true", "log":"true" }, { "name":"登錄", "moudle":"Login", "pass":"false", "onecepass":"true", "log":"asserterrorlog", "failurereason":{ "errorlog":"asserterror", "errorimg":"./登錄.jpg" } } ] }
3.通過$.getJSON獲得Json文件的數(shù)據(jù)
例如下面的例子:讀取result.json文件的內(nèi)容,存儲到result變量中,結(jié)果是一個json格式
$.getJSON('./result.json',function(result){}
4.通過【$('#元素id').after(html內(nèi)容);】將html內(nèi)容添加到定位到的元素后面
元素定位方式
$("#id"):定位到id, $(“p"):定位到標(biāo)簽p,其他標(biāo)簽同理 $(“.class”):定位到class
插入html內(nèi)容位置:
append() - 在被選元素的結(jié)尾插入內(nèi)容
Json數(shù)據(jù)的操作
JSON對象[key]來讀取內(nèi)容:result['title'],或者用result.”title"
數(shù)組的對象值,可以通過$.each來獲得數(shù)據(jù):
$.each(JSON數(shù)組對象,function(遍歷索引i,遍歷對象){操作遍歷的對象})
讀取result.json,追加html的代碼如下
(jquery需要寫在<script>標(biāo)簽內(nèi))
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> New Document </TITLE> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> <script> $(document).ready(function(){ //使用getJSON方法讀取json數(shù)據(jù), //注意:info.json可以是不同類型文件,只要其中的數(shù)據(jù)為json類型即可 $.getJSON('./result.json',function(result){ var html_title=''; var html_resultinfo=''; html_title += '<b>'+result["title"]+'</b>'; $('#resultitle').after(html_title); $.each(result["resultinfo"],function(i,item){ if(item["pass"]=="true") { html_resultinfo += '<tr><td>' + item['name'] + '</td>' + '<td>' + item['moudle'] + '</td>' + '<td>' + item["pass"] + '</td>' + '<td>' + item['onecepass'] + '</td>' + '<td id="' + item['moudle'] + '" class="collapsed" onclick="collapsedisplay(' + item['moudle'] + ')"><u style="color: blue;">展開</u></td></tr>'; html_resultinfo +='<tr id="' + item['moudle'] + 'info" class="collapsedinfo" style="display:none"><td colspan="5">' + item['log'] + '</td></tr>'; } $('#infotitle').after(html_resultinfo);//after方法:在每個匹配的元素之后插入內(nèi)容。 }); }); </script> </HEAD> <BODY> <p style="margin-top: 30px"> <p style="font-size: 30px;text-align: center"> <p id="resultitle" ></p> </p> </p> <p id="resultinfo" style="clear: both;padding-top: 30px"> <table style="width: 1080px"> <tr id="infotitle"> <th style="width:360px">用例名稱</th> <th style="width:200px">模塊名稱</th> <th style="width:180px">是否成功</th> <th style="width:180px">一次成功</th> <th style="width:160px">詳情</th></tr> </table> </p> </p> </BODY> </HTML>
相信看了本文案例你已經(jīng)掌握了方法,更多精彩請關(guān)注Gxl網(wǎng)其它相關(guān)文章!
推薦閱讀:
jQuery怎么動態(tài)操控頁面元素
jquery怎么配置webpack
jQuery EasyUI操作折疊面板accordion詳細步奏
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com