web-dev-qa-db-ja.com

JSON配列を使用したjQueryの「各」ループ

JQueryのeachループを使用してこのJSONを通過し、#contentHereという名前のdivに追加しようとしています。 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" }
 ]
}

私はこのコードを使用してこのJSONを取得しています:

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

}) 

解決策はありますか?

26
Ben

試してください(未テスト):

$.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)扱いたいので、3つの別々のループを考えました。そうでない場合は、次のことができます。

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

簡単なコードですが、フル機能

以下は、各データの「レコード」をHTML要素にフォーマットし、データのプロパティをHTML属性値として使用するハイブリッドjQueryソリューションです。

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

詳細情報
JSONデータは次の方法で使用されました。

各カテゴリ(配列が保持されるキー名):

  • キー名はセクション見出しとして使用されます(例:justIn

配列内に保持されている各オブジェクトに対して:

  • 「テキスト」はdivのコンテンツになります
  • 'textType'はdivのクラスになります(スタイルシートにフックされます)
  • 「textId」はdivのIDになります
  • 例えば<div id = "T122" class = "Order">こちらにアクセス</ div>
7
John K

これは私のために働く:

$.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) どうしたの? 質問
    (122) こっちにこい 注文
  • 最近
    (1255) こんにちは 挨拶
    (6564) どうしたの? 質問
    (0192) こっちにこい 注文
  • 古い
    (5213) こんにちは 挨拶
    (9758) どうしたの? 質問
    (7655) こっちにこい 注文

また、contentType'json'として設定することを忘れないでください

3
artlung

表を使用して、自分のサイトの1つにある私のソリューション:

$.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);
 });
});

section/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>

これは基本的に、すべての行に 'tr_'を前に付けた一意のIDを与えて、サーバースクリプト時に他の番号付き要素IDを許可します。次に、jQueryスクリプトはこのTR_ [id]要素を取得し、正しいインデックス付きセルにjson戻り値を入力します。

利点は、DBから完全な配列を取得し、foreach($ array as $ record)でテーブルhtmlを作成できることです。OR(更新リクエストがある場合) (json_encode($ array))テーブルを表示する前に、すべて同じページに同じ表示コードで表示します。

0
Florian Mertens