JSON(Javascript Object Notation)
- JSON結構
- 物件型態(Object):
- 以{}表示。
- 陣列型態(Array)
- 以[]表示。
- JSON資料
- "key":value:key和value之間用『:』隔開。
- JSON value表示法
- 數字(整數或浮點數)
- 字串(需加上"",ex:"string")
- 布林函數(boolean,true或者false)
- NULL
- 舉例:
{
"orderID"
: 12345,
"shopperName"
:
"John Smith"
,
"shopperEmail"
:
"johnsmith@example.com"
,
"contents"
: [
{
"productID"
: 34,
"productName"
:
"SuperWidget"
,
"quantity"
: 1
},
{
"productID"
: 56,
"productName"
:
"WonderWidget"
,
"quantity"
: 3
}
],
"orderCompleted"
:
true
}
沒有留言:
張貼留言