0
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.

【Javascript】ネストされたJSONデータの取得方法で詰まったので記録

Posted at

データイメージ

   {
  "eventKey":"repo:xxxxxxxx",
  "date":"2020-05-30T00:00:00+1000",
  "actor":{
    "name":"admin",
    "emailAddress":"admin@example.com",
    "displayName":"Administrator",
    "active":true
  }

取得対象は、actor内のdisplayNameとする。
とある環境で、コーディングした際に、以下で説明するブラケット記法でしか値が取れなかったため備忘録として記録する。

取得方法(2種)

  • ブラケットを用いる

json['actor']['displayName']
  • .(ドット)を用いる
json.actor.displayName

最後に

結論、console.logではどちらを使っても値が取れるのだが、
とある環境では、ドット記法が使えないケースが存在した。
詳しい方いましたら、解説願います・・

0
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
0
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?