일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ethers v6
- ethers type
- git rebase
- chainlink 설명
- 컨트렉트 동일한 함수이름 호출
- multicall
- 스마트컨트렉트 예약어 함수이름 중복
- rust 기초
- 머신러닝기초
- Vue.js
- 스마트컨트렉트프록시
- 스마트컨트렉트 함수이름 중복 호출
- 스마트컨트렉트테스트
- 러스트기초
- Vue
- nestjs 튜토리얼
- vue기초
- 러스트 기초 학습
- ethers
- ethers websocket
- 깃허브명령어
- 프록시배포구조
- 컨트렉트 배포 자동화
- 스마트 컨트렉트 함수이름 중복
- 체인의정석
- 러스트 기초
- ethers typescript
- SBT표준
- ambiguous function description
- nest.js설명
Archives
- Today
- Total
체인의정석
optional chainning 적용 시 리턴값 문제 본문
728x90
반응형
optional chainning을 적용할 경우 아래와 같이 undeifinded가 계속해서 나오게 된다.
optional chainning에서는 리턴 값이 undefined를 주기 때문에 이를 유의해야한다.
Address {
addressType: 'BIZZ',
department: undefined,
subDepartment: undefined,
streetName: undefined,
buildingNumber: undefined,
buildingName: undefined,
floor: undefined,
postBox: undefined,
room: undefined,
postcode: '06232',
townName: 'Seoul',
townLocationName: undefined,
districtName: undefined,
countrySubDivision: undefined,
addressLine: [ '14 Teheran-ro 4-gil, Gangnam-gu', '12th floor' ],
country: 'KR'
}
따라서 다시 스프레드 함수로 체크하는 방식으로 되돌렸다.
Address {
addressType: 'BIZZ',
postcode: '06232',
townName: 'Seoul',
addressLine: [ '14 Teheran-ro 4-gil, Gangnam-gu', '12th floor' ],
country: 'KR'
}
728x90
반응형
'개발 > backend' 카테고리의 다른 글
Typescript) string을 받아와서 enum으로 고칠 경우 any를 안쓰고 타입체크하는 방법 (0) | 2021.07.30 |
---|---|
Typescript nested class에서 에러, 예외 처리부분 validate 함수로 만들어서 빼기 (0) | 2021.07.30 |
Type script, implements (0) | 2021.07.30 |
Optional chainning 사용하기, optional chainning을 사용할 수 없는 경우 해결 방안 (0) | 2021.07.29 |
TypeScript) 추상 class 설정하고 상속받기 (0) | 2021.07.27 |
Comments