洛丁山奈 2017-06-02 03:12 采纳率: 0%
浏览 3171
已采纳

json字符串在html中,怎么转换成表格展示?

{
"response":{
"numFound":"2",
"start":"0",
"docs":[
{
"id":"857400f2-b680-4de1-b9d1-5ea107f6f362",
"agentId":"ServicePlatform_Infrastructure_CPU-Usage",
"category":"Infrastructure",
"subCategory":"CPU-Usage",
"thirdCategory":"N/A",
"dataAcquistionTime":"1496332066849",
"optional":"",
"label":"CPU使用率",
"data":"98%",
"data_i":"98",
"data_f":"0",
"optionData_f":"0",
"option2Label":"",
"option2Data":"",
"option2Data_f":"0",
"option3Label":"",
"option3Data":"",
"option3Data_f":"0",
"seqNo":"0",
"_version_":"1569048833034289200"
}
]
}
}

 这样的json,在html怎么解析成表格?求代码
  • 写回答

7条回答 默认 最新

  • 全栈极简 博客专家认证 2017-06-02 03:34
    关注
     <html>
    <head>
        <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.js"></script>
        <script type="text/javascript">
            $(function(){
                var json ="{\"response\": {\"numFound\": \"2\",\"start\": \"0\",\"docs\": [{\"id\": \"857400f2-b680-4de1-b9d1-5ea107f6f362\",\"agentId\": \"ServicePlatform_Infrastructure_CPU-Usage\",\"category\": \"Infrastructure\",\"subCategory\": \"CPU-Usage\",\"thirdCategory\": \"N/A\",\"dataAcquistionTime\": \"1496332066849\",\"optional\": \"\",\"label\": \"CPU使用率\",\"data\": \"98%\",\"data_i\": \"98\",\"data_f\": \"0\",\"optionData_f\": \"0\",\"option2Label\": \"\",\"option2Data\": \"\",\"option2Data_f\": \"0\",\"option3Label\": \"\",\"option3Data\": \"\",\"option3Data_f\": \"0\",\"seqNo\": \"0\",\"_version_\": \"1569048833034289200\"}]}}";
    
                var elements = JSON.parse(json).response.docs;
                for(var i = 0;i<elements.length;i++){
                    $("#tt").append("<tr>");
                    $("#tt").append("<td width='5%'>"+elements[i].id+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].agentId+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].category+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].subCategory+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].thirdCategory+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].dataAcquistionTime+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].optional+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].label+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].data+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].data_i+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].data_f+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].optionData_f+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].option2Label+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].option2Data+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].option2Data_f+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].option3Label+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].option3Data+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].option3Data_f+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i].seqNo+"</td>");
                    $("#tt").append("<td width='5%'>"+elements[i]._version_+"</td>");
                    $("#tt").append("</tr>");
                }
            });
    
        </script>
    </head>
    <body>
        <table id="tt" border="1" cellspacing="0" cellpadding="0">
        </table>
    </body>
    </html>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(6条)

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化