JSON에서 쉽게 파싱하는 도구 발견!

1838 단어 SwiftTypeScriptKotlin
Swift, Kotlin, TypeScript 등 각종 언어에 대응하고 있습니다.



귀하의 JSON을 준비하고,


{
  "greeting": "Welcome to quicktype!",
  "instructions": [
    "Type or paste JSON here",
    "Or choose a sample above",
    "quicktype will generate code in your",
    "chosen language to parse the sample data"
  ]
}

Swift로 변환


import Foundation

// MARK: - Welcome
struct Welcome: Codable {
    let greeting: String
    let instructions: [String]
}

좋은 웹페이지 즐겨찾기