如何使用Swift Decodeable解码嵌套的JSON结构



这是我的JSON

{
"myItems": {
"item1name": [{
"url": "google.com",
"isMobile": true,
"webIdString": "572392"
}, {
"url": "hulu.com",
"isMobile": false,
"webIdString": "sad1228"
}],
"item2name": [{
"url": "apple.com",
"isMobile": true,
"webIdString": "dsy38ds"
}, {
"url": "Facebook.com",
"isMobile": true,
"webIdString": "326dsigd1"
}, {
"url": "YouTube.com",
"isMobile": true,
"webIdString": "sd3dsg4k"
}]
}
}

json可以有多个项目(如item1name、item2name、item3name…(,每个项目可以有多个子对象(示例中第一个项目有2个对象,第二个项目有3个对象(。

以下是我想要保存的结构(不完整(:

struct ServerResponse: Decodable {
let items: [MyItem]?
}
struct MyItem: Decodable {
let itemName: String?
let url: String?
let isMobile: Bool?
let webIdString: String?
}

在上面的例子中,这意味着items列表应该有五个MyItem对象。例如,这些将是MyItem对象:

#1:itemName:item1name,网址:google.com,isMobile:真的,webIdString:572392

#2:itemName:item1name,网址:hulu.com,isMobile:false,webIdString:sad1228

#3:itemName:item2name,网址:apple.com,isMobile:真的,webIdString:dsy38ds

#4:itemName:item2name,网址:Facebook.com,isMobile:真的,webIdString:326dsigd1

#5:itemName:item2name,网址:YouTube.com,isMobile:真的,webIdString:sd3dsg4k

对我来说,使用可解码的最好方法是什么?如有任何帮助,我们将不胜感激。我认为这可能与这个问题类似:如何使用Swift Decodeable协议解码嵌套的JSON结构?

使用以下代码解码符合您需求的嵌套JSON:

import Foundation

// MARK: - Websites
struct Websites: Codable {
var myItems: MyItems
}
// MARK: - MyItems
struct MyItems: Codable {
var item1Name, item2Name: [ItemName]
enum CodingKeys: String, CodingKey {
case item1Name = "item1name"
case item2Name = "item2name"
}
}
// MARK: - ItemName
struct ItemName: Codable {
var url: String
var isMobile: Bool
var webIDString: String
enum CodingKeys: String, CodingKey {
case url, isMobile
case webIDString = "webIdString"
}
}

注意:根据需要更改变量的名称。

编辑

如果您仍然面临问题,请使用此应用程序将JSON转换为Struct:

快速型

以下是您想要的结构:

struct Websites: Decodable {
let items: [Item]
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: Key.self)
items = try container.decode([String: [Item]].self, forKey: .myItems).values.flatMap { $0 }
}
private enum Key: String, CodingKey {
case myItems
}
}
struct Item: Decodable {
let url: String
let isMobile: Bool
let webIdString: String
}

相关内容

  • 没有找到相关文章

最新更新