Skip to content
Pierre edited this page Aug 12, 2014 · 3 revisions
  • Json is a simple format which is a sub part of JavsScript objects. It means JavaScript Object Notation
  • Each key of the object must be a string
  • Valid JSON:
{
  "key": "value",
  "person": {
    "firstName": "Steve",
    "lastName": "Jobs",
    "age": 56
  }
}

Advantages:

  • Simple structure
  • Light on the network exchanges
  • JSON objects are JavaScript objects => Native interpretation inside browsers.

[next](https://raw.githubusercontent.com/wiki/KleeGroup/focus/server-side/controller.md)
Clone this wiki locally