Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 리네이미지
- react typescript eslint prettier
- css 초기화하기
- react eslint
- react-native-fast-image
- 리네 안드로이드
- 프리랜서 양식
- react prettier setting
- nextjs 설치
- 프리랜서 금액안내서
- 재공학
- 정보처리기사 2024
- nextjs 시작
- 금액안내서
- react typescript eslint
- 리네renderIndicator
- react-native-image-progress
- css 초기세팅
- 리네 안드로이드 뒤로가기
- 금액안내서 양식
- 안드로이드뒤로가기
- 이미지랜더링
- react plugin setting
- eslint setting
- 정보처리기사
- nextjs 설치하기
- 목표정하기
- 리네 뒤로가기
- 프리랜서 견적서
- 리네이미지랜더링
Archives
- Today
- Total
hello! Mingure
[Javascript/React/ReactNative] 딕셔너리 데이터 뽑아오기 본문
구조 복잡한 딕셔너리에서 데이터 뽑아오기
예를들어: 이런 데이터를 가진 dict이 있다고 치자
{
{a: {value: 16, type:'dropdown'},
{b: {value: asd, type:'dropdown'},
{c: {value: ddd, type:'dropdown'},
{d: {value: fff, type:'dropdown'},
}
나는 a의 value 값을 뽑아오고싶은데 어떠케 하냐
for ( const key in dict){
console.log(dict[key])
console.log(key, dict[key])
console.log(key, dict[key].value)
}
간단. 끝!
'React' 카테고리의 다른 글
[React] safari IOS 낮은 버전에서 flex, height 값 안먹힘 (0) | 2023.03.02 |
---|---|
[React/React Native] Mac 개발환경 세팅하기 시리즈 (2) - Node, yarn, jdk, Watchman 설치하기 (0) | 2022.07.30 |
[React/React Native] Mac 개발환경 세팅하기 시리즈 (1) - Homebrew 설치하기 (0) | 2022.07.30 |
[Git] git push 취소하기 (0) | 2022.04.26 |
[컨벤션 세팅] React TypeScript Eslint+Prettier 세팅하기 (0) | 2022.03.28 |