Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. "data": [
  2. {
  3. "label": "dataName",
  4. "sections": [
  5. {
  6. "label": "label sections 1",
  7. "fields": [
  8. {
  9. "id": 1,
  10. "name": "field 1",
  11. "value": "value field 1"
  12. },
  13. {
  14. "id": 2,
  15. "name": "field 2",
  16. "value": "value field 2"
  17. }
  18. ]
  19. },
  20. {
  21. "label": "label sections 2",
  22. "fields": [
  23. {
  24. "id": 5,
  25. "name": "field 3",
  26. "value": "value field 3"
  27. }
  28. ]
  29. }
  30. ]
  31.  
  32. array [
  33. {id: field.id, name: field.name, value: field.value }
  34. {id: field.id, name: field.name, value: field.value }
  35. ]
  36.  
  37. _.each(data, function (elt) {
  38. _.each(elt.ections, function (elt) {
  39. ....
  40. })
  41. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement