1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

JSONについてまとめ

Posted at

JSONについて調べたことをまとめました。

#JSONとは

JavaScript Object Notaitonの略語

データを表示するための表記法の一種

他にXMLymlなどがある

#JSONの特徴

###扱えるデータの種類

  • 文字列
  • 数値
  • オブジェクト
  • 配列
  • 真偽値
  • null

###jsonのデータ表記例

山田太郎さんのデータの例
{
  "first-name": "太郎",
  "last-name": "山田",
  "age": 25,
  "height": 170,
  "weight": 65 
}

###その他

  • JavaScriptのオブジェクトの書き方と似ているが、別物
  • キー、文字列はをダブルクォーテーションで囲む必要がある(シングルはNG)

#JSONの用途

  • API通信時
    • ReqestResponseのデータに使用
    • 以前まではXMLを使用していた
  • DBの形式
    • firebaseMongoDB等のデータ保管
  • package.json
    • Node.jsパッケージのメタデータ保管
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?