Advertisement
Guest User

json request/response

a guest
Apr 26th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. Lista de alumnos
  2. Enviado por el servidor, recibido por frontend
  3. {
  4. "students": [
  5. {
  6. "id": 1,
  7. "name": "Fulano de tal"
  8. },
  9. {
  10. "id": 2,
  11. "name": "Fulano de tal"
  12. },
  13. {
  14. "id": 3,
  15. "name": "Fulano de tal"
  16. }
  17. ]
  18. }
  19.  
  20.  
  21. Lista de alumnos presentes y ausentes
  22. Enviada por frontend y recibida por servidor
  23. {
  24. "students": [
  25. {
  26. "id": 1,
  27. "name": "Fulano de tal",
  28. "isPresent": true
  29. },
  30. {
  31. "id": 2,
  32. "name": "Fulano de tal",
  33. "isPresent": false
  34. },
  35. {
  36. "id": 3,
  37. "name": "Fulano de tal",
  38. "isPresent": true
  39. }
  40. ]
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement