More than 1 year has passed since last update.
JSオブジェクト
キーをダブル、シングルコーテーションで囲っても囲わなくても良い & 文字列をダブル、シングルクォーテーションで囲む。(数字型の場合は囲わなくてOK)
{
jsonId: 0,
jsonName: "namename", ←末尾のカンマは使用できる。
}
JSON
キーをダブルクオーテーションで囲む & 文字列をダブルクォーテーションで囲む。 (数字型の場合は囲わなくてOK)
{
"jsonId": 0,
"jsonName": "namename" ←末尾のカンマは使用できない。
}
※JSONでは undefined が使えない。
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin