데이터 가지고 놀기(응용)2
다음과 같은 데이터가 있다고 해봅시다. 이런것은 나중에 API문서 등등 데이터를 받오는 것이다 라고 생각해주세요.
// data.json
{
"family": [
{
"global" :[
{
"name": "Mirae Asset Daewoo",
"link": "https://english.miraeassetdaewoo.com/"
},
{
"name": "Mirae Asset Global Investments",
"link": "https://www.am.miraeasset.com/"
}
]
},
{
"korea": [
{
"name": "Mirae Asset Daewoo",
"link": "https://www.miraeassetdaewoo.com/"
},
{
"name": "Mirae Asset Global Investments",
"link": "https://investments.miraeasset.com/main/index.do"
},
{
"name": "Mirae Asset Life Insurance",
"link": "http://life.miraeasset.com/"
}
]
},
{
"mongolia": [
{
"name": "Mirae Asset Daewoo",
"link": "https://miraeassetsecurities.mn/"
}
]
}
]
}Last updated
Was this helpful?