LoginSignup
0
1

More than 1 year has passed since last update.

JSONデータへのアクセス方法

Last updated at Posted at 2021-07-21

JSONデータへのアクセス方法


  const jsonData = { firstName: 'Tanaka' };

  console.log('OK:', jsonData.firstName) //OK: Tanaka
  console.log('OK:', jsonData.age) //OK: undefined
  console.log('OK:', jsonData['firstName']) //OK: Tanaka
  console.log('OK:', jsonData['age']) //OK: undefined
  console.log('NG:', jsonData.age.year) //TypeError: Cannot read property 'year' of undefined
  console.log('NG:', jsonData['age'].year) //TypeError: Cannot read property 'year' of undefined

APIのレスポンスで想定していないケースが発生した場合はどうするのがベストなのだろう。
・ネストが正しいかどうかをまず判断する?
・forやmapで要素を取得しに行く時などは、いちいちtry-catchなどをすべき?

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