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 |
Tags
- 티스토리챌린지
- SWIFT
- modern concurrency deep dive
- 오블완
- WWDC
- ios
- 야곰 # 야곰아카데미커리어스타터캠프 #iOS개발자 # 부트캠프
- APNS
- modern concurrency
Archives
- Today
- Total
Geon
Json Parsing with optional key 본문
JSON 파싱시 특정 Key를 아예 전달해주지 않을때 Decoding Error를 회피하는 방법
예시
정상 요청
data: {test1: "123", test2:"123"}, message: "", status: "SUCCESS"
비정상 요청
message: "잘못된 요청입니다.", status: "FAIL"
해결 방법
final class ExampleDTO: Codable {
var data: Dummy?
var message, status: String?
private enum CodingKeys: String, CodingKey{
case data, message, status
}
required init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
self.data = (try? container.decode(Dummy.self, forKey: .data)) ?? Dummy()
self.message = try container.decode(String.self, forKey: .message)
self.status = try container.decode(String.self, forKey: .status)
}
final class Dummy: Codable {
var test1: String?
var test2: String?
}
* decoder에서 키를 매핑시킬때 try? 처리
'SwiftUI > 지식 창고' 카테고리의 다른 글
mitmproxy로 iOS 네트워크 감청해보기 (1) | 2024.09.05 |
---|---|
긴급 심사 올리기 (0) | 2024.08.21 |
NotificationService를 통한 다국어 처리 (0) | 2024.06.25 |
TextEditor에 PlaceHolder 적용 (0) | 2022.12.30 |
SwiftUI 텍스트 크기 지정 (0) | 2022.12.14 |