Guest User

Untitled

a guest
Nov 19th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. {
  2. "sec": "11",
  3. "details": [
  4. {
  5. "id": "1",
  6. "user": "Me1"
  7. },
  8. {
  9. "id": "2",
  10. "uesr": "Me2"
  11. },
  12. {
  13. "id": "3",
  14. "user": "Me3"
  15. }
  16. {
  17. "id": "4",
  18. "user": "Me4",
  19. parentID:"2"
  20. },
  21. {
  22. "id": "5",
  23. "uesr": "Me5"
  24. },
  25. {
  26. "id": "6",
  27. "user": "Me6",
  28. parentID:"2"
  29. }
  30. {
  31. "id": "7",
  32. "user": "Me7"
  33. },
  34. {
  35. "id": "8",
  36. "uesr": "Me8",
  37. parentID:"7"
  38. },
  39. {
  40. "id": "9",
  41. "user": "Me9",
  42. parentID:"7"
  43. }
  44. ],
  45. "isDisplay": "true"
  46. }
  47.  
  48. {
  49. "sec":"11",
  50. "details":[
  51. {
  52. "id":"1",
  53. "user":"Me1"
  54. },
  55. {
  56. "id":"2",
  57. "uesr":"Me2",
  58. "childs":[
  59. {
  60. "id":"4",
  61. "user":"Me4",
  62. "parentID":"2"
  63. },
  64. {
  65. "id":"6",
  66. "user":"Me6",
  67. "parentID":"2"
  68. }
  69. ]
  70. },
  71. {
  72. "id":"3",
  73. "user":"Me3"
  74. },
  75. {
  76. "id":"5",
  77. "uesr":"Me5"
  78. },
  79. {
  80. "id":"7",
  81. "user":"Me7",
  82. "childs":[
  83. {
  84. "id":"8",
  85. "uesr":"Me8",
  86. "parentID":"7"
  87. },
  88. {
  89. "id":"9",
  90. "user":"Me9",
  91. "parentID":"7"
  92. }
  93. ]
  94. }
  95. ],
  96. "isDisplay":"true"
  97. }
  98.  
  99. this.list = _.groupBy(this.list,"parentID");
Add Comment
Please, Sign In to add comment