官术网_书友最值得收藏!

The JSON Format

JavaScript Object Notation (JSON) is a simple plaintext format that is capable of representing complex data structures. We can use this format to represent strings, numbers, arrays, and even objects. Once we have the information "JSONified," we can use this widely adopted format to communicate with the API.

We are going to show you what a JSON format file looks like. In the following example, you will see that we are representing two recipes in JSON format. A JSON document is a plaintext document; there is no encryption here. It is so readable that I am sure you can already tell (without further explanation) that there are two recipes here, each with an ID, name, and description.

Here are a few notes on JSON syntax:

  • Arrays are enclosed by []
  • Objects can be represented by {}
  • Names/values always exist in pairs, and are delimited by ":"
  • Strings are enclosed by ""

Following is a sample code file with JSON syntax:

{

  "recipes":[

    {

      "id":1,

      "name":"Egg Salad",

      "description":"Place an egg in a saucepan and..."

    },

    {

      "id":2,

      "name":"Tomato Pasta",

      "description":"Bring a large pot of lightly salted water to a boil..."

    }

  ]

}

主站蜘蛛池模板: 剑川县| 泌阳县| 沙坪坝区| 云阳县| 西林县| 修水县| 法库县| 邢台市| 武威市| 荥阳市| 平度市| 伊宁市| 汤阴县| 朔州市| 松潘县| 萝北县| 海原县| 通化市| 邓州市| 巴里| 康保县| 康定县| 碌曲县| 万荣县| 温宿县| 阳泉市| 拜泉县| 图们市| 平顶山市| 红安县| 衡阳市| 北碚区| 南华县| 都匀市| 凤翔县| 延川县| 乌拉特后旗| 岑溪市| 施秉县| 邯郸县| 伊吾县|