Einzelnen Beitrag anzeigen

Schokohase
(Gast)

n/a Beiträge
 
#14

AW: Send JSON over TCP connection

  Alt 18. Sep 2019, 10:14
Talking about overhead ... why not remove all overhead?
Code:
[
  {
    "deptName": "Finance",
    "deptID": 10
  },
  {
    "deptName": "HUMAN RESOURCE",
    "deptID": 11
  }
]
contains the same information as
Code:
{
  "items": [
    {
      "deptName": "Finance",
      "deptID": 10
    },
    {
      "deptName": "HUMAN RESOURCE",
      "deptID": 11
    }
  ]
}
but with less chars (overhead).
  Mit Zitat antworten Zitat