JSON的正确类结构被推入本地领域

问题描述 投票:0回答:1

好吧,基本上我要做的就是从我制作的api中提取运动鞋数据,其中包含各种运动鞋的数据。 json结构看起来像这样。

  sneakers {
        bramds {
             nike
                 nikeshoe1
                 nikeshoe2
                 ......
            jordan
                 jordanshoe1
                 jordanshoe2
                 ......
}
}

我想在swift中创建一个继承可解码类的类,以便我可以解析和反序列化json并将其传递给realm。我查看了本指南,但我仍然有点卡在建模部分。目前我拥有的是这样的

import Foundation
import RealmSwift


struct Sneaker: Decodable {
    var brands : [Brands]

}

struct Brands: Decodable {
    var brandName: String
    var shoe: [Shoe]

}

struct Shoe:Decodable {

    var productlink: String
    var productlinkhref: String
    var name: String
    var price: String
    var releasedate: String
    var colorway: String
    var brand: String
    var designer: String
    var technology: String
    var maincolor: String
    var silhouette: String
    var nickname: String
    var category: String
    var imagesrc: String

}

我只是试图弄清楚我是否在正确的轨道上,根据我的JSON结构使这些模型可解码。除了将可解码对象推送到领域的正确语法之外,它是否是相同的语法?我已经包含了我的JSON样本以及任何帮助下面的内容

{
"sneakers": {
  "brands" : {
    "Air Jordan": [
      {
            "webscraperorder": "1554084909-97",
            "webscraperstarturl": "https://www.goat.com/sneakers",
            "productlink": "$200AIR JORDAN 6 RETRO 'INFRARED' 2019",
            "productlinkhref": "https://www.goat.com/sneakers/air-jordan-6-retro-black-infrared-384664-060",
            "name": "Air Jordan 6 Retro 'Infrared' 2019",
            "price": "Buy New - $200",
            "description": "The 2019 edition of the Air Jordan 6 Retro ‘Infrared’ is true to the original colorway, which Michael Jordan wore when he captured his first NBA title. Dressed primarily in black nubuck with a reflective 3M layer underneath, the mid-top features Infrared accents on the midsole, heel tab and lace lock. Nike Air branding adorns the heel and sockliner, an OG detail last seen on the 2000 retro.",
            "releasedate": "2019-02-16",
            "colorway": "Black/Infrared 23-Black",
            "brand": "Air Jordan",
            "designer": "Tinker Hatfield",
            "technology": "Air",
            "maincolor": "Black",
            "silhouette": "Air Jordan 6",
            "nickname": "Infrared",
            "category": "lifestyle",
            "imagesrc": "https://image.goat.com/crop/1250/attachments/product_template_additional_pictures/images/018/675/318/original/464372_01.jpg.jpeg"
        },
        {
            "web-scraper-order": "1554084911-110",
            "webscraperstarturl": "https://www.goat.com/sneakers",
            "productlink": "NewMar 30$160AIR JORDAN 1 RETRO HIGH OG 'PHANTOM'",
            "productlinkhref": "https://www.goat.com/sneakers/air-jordan-1-retro-high-og-black-phantom-555088-160",
            "name": "Air Jordan 1 Retro High OG 'Phantom'",
            "price": "Buy New - $160",
            "description": "Instead of the usual two-tone color blocking, the Air Jordan 1 Retro High OG ‘Phantom’ makes use of contrast stitching in black and red to distinguish the high-top’s clean lines. The shoe’s all-leather upper is finished in off-white Sail, accented by a padded collar and underlayer Swoosh in University Red. True to its OG designation, the design is finished with Nike Air branding on the woven tongue tag and insole.",
            "releasedate": "2019-03-30",
            "colorway": "Sail/Black-Phantom-University Red",
            "brand": "Air Jordan",
            "designer": "Peter Moore",
            "technology": "Air",
            "maincolor": "White",
            "silhouette": "Air Jordan 1",
            "nickname": "Phantom",
            "category": "lifestyle",
            "imagesrc": "https://image.goat.com/crop/1250/attachments/product_template_additional_pictures/images/020/095/781/original/411931_06.jpg.jpeg"
        }

如果我忽略了一些细节,请告诉我。

swift realm decodable
1个回答
0
投票

看起来好像你走在正确的轨道上,但是你看过Apple的例子吗?

https://developer.apple.com/documentation/foundation/archives_and_serialization/using_json_with_custom_types

我发现可下载的游乐场非常有帮助。

此外,由于您可以设计JSON,因此您可以自由地使JSON镜像成为您想要的Swift数据结构。所以我会从那里倒退。

© www.soinside.com 2019 - 2024. All rights reserved.