简体   繁体   中英

Display the JSON data in parent-child hierarchical structure

We want to display the JSON data in parent-child hierarchical structure

var JsonArr = [{
                   "comment":"Comment 1", 
                   "commentID":1, 
                   "parentID":0,
                   "children":[{
                              "comment":"Comment 1-2", 
                              "commentID":2, 
                              "parentID":1, 
                              "children":[{
                                         "comment":"Comment 1-2-2",
                                         "commentID":1,
                                         "parentID":2 
                                         }]
                            }]
                },
                {
                "comment":"Comment 2", 
                "commentID":4, 
                "parentID":0
               }]

Current Output :
在此处输入图片说明

Expected Output :
在此处输入图片说明

Working JSFiddle : https://jsfiddle.net/6dcdbks4/

Any Immediate help will be highly appreciable. Thanks.

check this fiddle .

not exactly a tree structure but we can mimic it using css and passing passing level information

function showComments(comments,level){//Extra parameter for level information
 for(var i = 0; i < comments.length; i++) {
     commentsContainer = loadComment(comments[i], commentsContainer,level)//render comment along with level information
    if (comments[i]['children'] && comments[i]['children'].length) {
      showComments(comments[i]['children'],level+1)//next level for children
    }
  }
}

function loadComment(commentObj, commentsContainer,level){//level of node
    var profileFullName = "Rohit Jindal";
    //add some padding multiplied with level for each comment element
    var commentHTML = '<div class="commentbox" style="padding-left:'+(level*100)+'px;"><div class="commentphoto"><a href="#123"><img src="https://graph.facebook.com/100000816365798/picture?type=square"></a></div><div class="commentcontent"><a href="#123"><strong>' + profileFullName + '</strong></a> &nbsp;<small>Just now</small><br>' + commentObj.comment + '<br><a name="replyComment" commentid="' + commentObj.commentID + '">Reply</a><span id="votescore-' + commentObj.commentID + '" class="votescore"></span></div></div>';
    commentsContainer.append(commentHTML);
    return commentsContainer;
}

showComments(JsonArr,0);//call showComment with initial level 0

I have modified your code a bit. Please have a look at the fiddle: https://jsfiddle.net/swaprks/6dcdbks4/2/

JAVASCRIPT:

$(document).ready(function() {
 var StmId = $('[name = "StatementId"]').val();
 var JsonArr = [{
                   "comment":"Comment 1", 
                   "commentID":1, 
                   "parentID":0,
                   "children":[{
                              "comment":"Comment 1-2", 
                              "commentID":2, 
                              "parentID":1, 
                              "children":[{
                                         "comment":"Comment 1-2-2",
                                         "commentID":1,
                                         "parentID":2 
                                         }]
                            }]
                },
                {
                "comment":"Comment 2", 
                "commentID":4, 
                "parentID":0
               }]

var commentsContainer = $("<div></div>");

showComments(JsonArr);

function loadComment(commentObj, commentsContainer, isChild){
   // console.log(commentObj);
    var profileFullName = "Rohit Jindal";
    var marginLeft = '';
    if ( commentObj.parentID > 0 ) {
         marginLeft = 'style="margin-left: '+commentObj.parentID*60+'px;"'
    }

    var commentHTML = '<div '+marginLeft+' class="commentbox"><div class="commentphoto"><a href="#123"><img src="https://graph.facebook.com/100000816365798/picture?type=square"></a></div><div class="commentcontent"><a href="#123"><strong>' + profileFullName + '</strong></a> &nbsp;<small>Just now</small><br>' + commentObj.comment + '<br><a name="replyComment" commentid="' + commentObj.commentID + '">Reply</a><span id="votescore-' + commentObj.commentID + '" class="votescore"></span></div></div>';
    commentsContainer.append(commentHTML);
       // console.log(commentsContainer.closest('.commentbox'));
    return commentsContainer;
}

function showComments(comments, isChild){
 for(var i = 0; i < comments.length; i++) {
    // console.log(comments[i]['comment']);
       commentsContainer = loadComment(comments[i], commentsContainer, isChild)
    if (comments[i]['children'] && comments[i]['children'].length) {
      showComments(comments[i]['children'], true)
    }
  }
}

$('.commentbox').append(commentsContainer);
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM