jQuery'每个'循环与JSON数组

时间:2010-06-12 22:25:20

标签: javascript jquery json each

我正在尝试使用jQuery的each循环来浏览此JSON并将其添加到名为div的{​​{1}}。 JSON如下:

#contentHere

我通过使用此代码获得此JSON:

{ "justIn": [
  { "textId": "123", "text": "Hello", "textType": "Greeting" },
  { "textId": "514", "text":"What's up?", "textType": "Question" },
  { "textId": "122", "text":"Come over here", "textType": "Order" }
  ],
 "recent": [
  { "textId": "1255", "text": "Hello", "textType": "Greeting" },
  { "textId": "6564", "text":"What's up?", "textType": "Question" },
  { "textId": "0192", "text":"Come over here", "textType": "Order" }
  ],
 "old": [
  { "textId": "5213", "text": "Hello", "textType": "Greeting" },
  { "textId": "9758", "text":"What's up?", "textType": "Question" },
  { "textId": "7655", "text":"Come over here", "textType": "Order" }
 ]
}

任何解决方案?

4 个答案:

答案 0 :(得分:46)

尝试(未经测试):

$.getJSON("data.php", function(data){
    $.each(data.justIn, function() {
        $.each(this, function(k, v) {
            alert(k + ' ' + v);
        });
    });
    $.each(data.recent, function() {
        $.each(this, function(k, v) {
            alert(k + ' ' + v);
        });
    });
    $.each(data.old, function() {
        $.each(this, function(k, v) {
            alert(k + ' ' + v);
        });
    });    
});

我想,三个独立的循环因为您可能希望以不同方式处理每个数据集(justIn,recent,old)。如果没有,你可以这样做:

$.getJSON("data.php", function(data){
    $.each(data, function(k, v) {
        alert(k + ' ' + v);
        $.each(v, function(k1, v1) {
            alert(k1 + ' ' + v1);
        });
    });
}); 

答案 1 :(得分:7)

简介但功能齐全的

以下是混合jQuery解决方案,它将每个数据“记录”格式化为HTML元素,并将数据属性用作HTML属性值。

jquery each运行内循环;我需要外部循环上的常规JavaScript for才能获取属性名称(而不是值)以显示为标题。根据品味,它可以根据略有不同的行为进行修改。

只有5条主要代码行,但包装在多行显示:

$.get("data.php", function(data){

    for (var propTitle in data) {

        $('<div></div>') 
            .addClass('heading')
            .insertBefore('#contentHere')
            .text(propTitle);

            $(data[propTitle]).each(function(iRec, oRec) {

                $('<div></div>')
                    .addClass(oRec.textType)
                    .attr('id', 'T'+oRec.textId)
                    .insertBefore('#contentHere')
                    .text(oRec.text);
            });
    }

});

生成输出

(注意:我通过预先设置一个数字来修改JSON数据文本值,以确保我以正确的顺序显示正确的记录 - 而“调试”)

<div class="heading">
    justIn
</div>
<div id="T123" class="Greeting">
    1Hello
</div>
<div id="T514" class="Question">
    1What's up?
</div>
<div id="T122" class="Order">
    1Come over here
</div>
<div class="heading">
    recent
</div>
<div id="T1255" class="Greeting">
    2Hello
</div>
<div id="T6564" class="Question">
    2What's up?
</div>
<div id="T0192" class="Order">
    2Come over here
</div>
<div class="heading">
    old
</div>
<div id="T5213" class="Greeting">
    3Hello
</div>
<div id="T9758" class="Question">
    3What's up?
</div>
<div id="T7655" class="Order">
    3Come over here
</div>
<div id="contentHere"></div>

申请样式表

<style>
.heading { font-size: 24px; text-decoration:underline }
.Greeting { color: green; }
.Question { color: blue; }
.Order { color: red; }
</style>

获得“漂亮”的数据集

alt text http://img14.imageshack.us/img14/1148/62593416.png

更多信息
JSON数据以下列方式使用:

每个类别的

(数组所在的键名):

  • 键名称用作节标题(例如 justIn

对于数组中的每个对象:

  • 'text'成为div的内容
  • 'textType'成为div的类(挂钩到样式表)
  • 'textId'成为div的id
  • e.g。 &lt; div id =“T122”class =“Order”&gt;过来这里&lt; / div&gt;

答案 2 :(得分:3)

这对我有用:

$.get("data.php", function(data){
    var expected = ['justIn', 'recent', 'old'];
    var outString = '';
    $.each(expected, function(i, val){
        var contentArray = data[val];
        outString += '<ul><li><b>' + val + '</b>: ';
        $.each(contentArray, function(i1, val2){
            var textID = val2.textId;
            var text = val2.text;
            var textType = val2.textType;
            outString += '<br />('+textID+') '+'<i>'+text+'</i> '+textType;
        });
        outString += '</li></ul>';
    });
    $('#contentHere').append(outString);
}, 'json');

这会产生此输出:

<div id="contentHere"><ul>
<li><b>justIn</b>:
<br />
(123) <i>Hello</i> Greeting<br>
(514) <i>What's up?</i> Question<br>
(122) <i>Come over here</i> Order</li>
</ul><ul>
<li><b>recent</b>:
<br />
(1255) <i>Hello</i> Greeting<br>
(6564) <i>What's up?</i> Question<br>
(0192) <i>Come over here</i> Order</li>
</ul><ul>
<li><b>old</b>:
<br />
(5213) <i>Hello</i> Greeting<br>
(9758) <i>What's up?</i> Question<br>
(7655) <i>Come over here</i> Order</li>
</ul></div>

看起来像这样:

  • justIn
    (123)你好问候语(514)怎么了?问题< br />(122)来这里订单
  • 最近
    (1255)你好问候语(6564)怎么了?问题< br />(0192)过来订单
  • old
    (5213)你好问候语(9758)怎么了?问题< br />(7655)来这里订单

另外,请记住将contentType设置为'json'

答案 3 :(得分:0)

我在自己的某个网站上的解决方案,附表:

$.getJSON("sections/view_numbers_update.php", function(data) {
 $.each(data, function(index, objNumber) {
  $('#tr_' + objNumber.intID).find("td").eq(3).html(objNumber.datLastCalled);
  $('#tr_' + objNumber.intID).find("td").eq(4).html(objNumber.strStatus);
  $('#tr_' + objNumber.intID).find("td").eq(5).html(objNumber.intDuration);
  $('#tr_' + objNumber.intID).find("td").eq(6).html(objNumber.blnWasHuman);
 });
});

sections / view_numbers_update.php返回类似于:

的内容
[{"intID":"19","datLastCalled":"Thu, 10 Jan 13 08:52:20 +0000","strStatus":"Completed","intDuration":"0:04 secs","blnWasHuman":"Yes","datModified":1357807940},
{"intID":"22","datLastCalled":"Thu, 10 Jan 13 08:54:43 +0000","strStatus":"Completed","intDuration":"0:00 secs","blnWasHuman":"Yes","datModified":1357808079}]

HTML表格:

<table id="table_numbers">
 <tr>
  <th>[...]</th>
  <th>[...]</th>
  <th>[...]</th>
  <th>Last Call</th>
  <th>Status</th>
  <th>Duration</th>
  <th>Human?</th>
  <th>[...]</th>
 </tr>
 <tr id="tr_123456">
  [...]
 </tr>
</table>

这实质上为每行提供了一个唯一的id,前面带有'tr_',以便在服务器脚本时允许其他编号的元素id。然后,jQuery脚本只获取此TR_ [id]元素,并使用json返回填充正确的索引单元格。

优点是你可以从数据库获取完整的数组,并且foreach($ array as $ record)创建表html,或者(如果有更新请求)你可以死(json_encode($ array) )在显示表之前,所有表都在同一页面中,但显示代码相同。