- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个返回 JSON 响应的标准 URL get 请求。标准的 JSON 响应是这样写的
//get request for the user
{
"USER":
{
"NAME":"myName",
"ID":10000
}
}
//get request for the forums
{
"FORUM":[
{
"SORT":1,
"ID":35,
"TITLE":"Feedback",
"SECTION":"secion1"
},
{
"SORT":2,
"ID":92,
"TITLE":"Choosing an ISP",
"SECTION":"secion2"
},
{
"SORT":3,
"ID":100,
"TITLE":"Broadband",
"SECTION":"section2"
},
{
"SORT":4,
"ID":142,
"TITLE":"“NBN”",
"SECTION":"section2"
},
]
}
//get request for news
{"NEWS":
[
{
"DATE":"2018-10-13T03:56:06+1000",
"SOURCE":"smh.com.au",
"BLURB":"Assistant Treasurer Stuart Robert says he has repaid $37,975 of \"excess usage charges\" in home internet bills footed by taxpayers.",
"ID":102347,
"TITLE":"Stuart Robert pays back $38,000 in excessive home internet charges"
},
{
"DATE":"2018-10-12T18:00:38+1000",
"SOURCE":"itwire.com",
"BLURB":"The CVC costs set by the NBN Co make it very difficult for ISPs to offer gigabit connections to more than a select band of customers who are willing to sign up in numbers and pay slightly more than other speed tiers, according to one ISP who caters to this type of consumer.",
"ID":102343,
"TITLE":"NBN gigabit connections will remain mostly a pipe dream"},
{
"DATE":"2018-10-12T09:48:43+1000",
"SOURCE":"computerworld.com.au",
"BLURB":"The Department of Home Affairs has rejects calls to include independent judicial oversight of the decision to issue Technical Assistance Notices and Technical Capability Notices as part of proposed legislation intended to tackle police agencies’ inability to access encrypted communications services.",
"ID":102342,
"TITLE":"Home Affairs rejects calls for additional safeguards in ‘spyware’ law"
},
{
"DATE":"2018-10-11T12:16:05+1000",
"SOURCE":"itnews.com.au",
"BLURB":"NBN Co is hoping to “speed up” building works on the fibre-to-the-curb (FTTC) portion of its network as it tries to make up lost ground.",
"ID":102334,
"TITLE":"NBN Co says fibre-to-the-curb build is more complex that it hoped"
},
]
}
正如我们所见,每个请求都有一个顶级 JSON 对象,有些请求可能有一个嵌套字典数组,而有些请求则没有。
问题
我在谷歌上搜索了几个小时,找到了 dynamic keys和 here但不完全是我所追求的。由于类型保持不变。我想要某种能够在运行时识别的通用类型。一个简单的方法是执行 switch/if 语句,但我希望能够在没有太多维护和重复代码的情况下让它增长/缩小——我需要在每次发出不同的请求时重复 URLSession block .
URLSession.shared.dataTask(with: url) { (data, response, err) in
guard let dataStr = data else {
return
}
do {
let json = try JSONSerialization.jsonObject(with: dataStr, options: [.mutableContainers, .allowFragments]) as! [String: Any]
print("json - \(json)")
let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .iso8601
let root = try decoder.decode(RootUser.self, from: dataStr)// **Identify the Type.self during runtime without conditional statements**
print(root)
} catch let jsonErr {
print("error serializing json", jsonErr)
}
}.resume()
URLSession.shared.dataTask(with: url) { (data, response, err) in
//....
let root = try decoder.decode(RootNews.self, from: dataStr)// **Identify the Type.self during runtime without conditional statements**
//...
}.resume()
URLSession.shared.dataTask(with: url) { (data, response, err) in
//....
let root = try decoder.decode(RootForum.self, from: dataStr)// **Identify the Type.self during runtime without conditional statements**
//...
}.resume()
问题
我想知道如何在不使用条件的情况下将这些请求分组为通用方法
更新
我已经根据通用获取功能对已接受的答案进行了一些扩展。通过将我的结构(RootUser、RootNews)组合成一个结构
struct Base: Decodable {
let news: [News]?
let user: User?
enum CodingKeys: String, CodingKey {
case news = "NEWS"
case user = "USER"
}
}
现在当我调用 fetch 函数时,我只需要修改 URL 而不是类型(接受的答案中的 RootUser、RootNews 或 Foo),它将只是类型 Base。
最佳答案
不确定这是否回答了您的问题,但您可以使您的网络请求对任何 Decodable
通用。
// Sample Model to be decoded
struct Foo: Decodable {
var id: String
var name: String
}
// Generic function to fetch decodables
func fetch<T: Decodable>(for url: URL, complete: @escaping (T?) -> Void) {
URLSession.shared.dataTask(with: url) { (data, response, err) in
do {
let model = try JSONDecoder().decode(T.self, from: data!)
complete(model)
}
catch {
print(error)
complete(nil)
}
}
}
// Test
let request = URL(string: "some://url.com")
fetch(for: request!) { (model: Foo?) -> Void in
print("found \(model)")
}
测试调用者知道它期望的是哪个模型,因此会在运行时推断并正确解码 Type Foo。
关于json - Swift 4 Decodable - 动态类型、键和属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52811181/
最近开始学习MongoDB。今天老师教了我们 mongoexport 命令。在练习时,我遇到了一个典型的问题,包括教练在内的其他同学都没有遇到过。我在我的 Windows 10 机器上使用 Mongo
我是 JSON Schema 的新手,读过什么是 JSON Schema 等等。但我不知道如何将 JSON Schema 链接到 JSON 以针对该 JSON Schema 进行验证。谁能解释一下?
在 xml 中,我可以在另一个 xml 文件中包含一个文件并使用它。如果您的软件从 xml 获取配置文件但没有任何方法来分离配置,如 apache/ngnix(nginx.conf - site-av
我有一个 JSON 对象,其中包含一个本身是 JSON 对象的字符串。我如何反序列化它? 我希望能够做类似的事情: #[derive(Deserialize)] struct B { c: S
考虑以下 JSON { "a": "{\"b\": 12, \"c\": \"test\"}" } 我想定义一个泛型读取 Reads[Outer[T]]对于这种序列化的 Json import
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 11 个月前关闭。 Improve
我的旧项目在 MySQL 中有 Standard JSON 格式的数据。 对于我在 JS (Node.js) 和 DynamoDB 中的全新项目,关于 Standard JSON格式: 是否建议将其转
JSON 值字符串、数字、true、false、null 是否是有效的 JSON? 即,是 true 一个有效的 JSON 文档?还是必须是数组/对象? 一些验证器接受这个(例如 http://jso
我有一个 JSON 字符串,其中一个字段是文本字段。这个文本字段可以包含用户在 UI 中输入的文本,如果他们输入的文本是 JSON 文本,也许是为了说明一些编码,我需要对他们的文本进行编码,以便它不会
我正在通过 IBM MQ 调用处理数据,当由 ColdFusion 10 (10,0,11,285437) 序列化时,0 将作为 +0.0 返回,它会导致无效的 JSON并且无法反序列化。 stPol
我正在从三个数组中生成一个散列,然后尝试构建一个 json。我通过 json object has array 成功了。 require 'json' A = [['A1', 'A2', 'A3'],
我从 API 接收 JSON,响应可以是 30 种类型之一。每种类型都有一组唯一的字段,但所有响应都有一个字段 type 说明它是哪种类型。 我的方法是使用serde .我为每种响应类型创建一个结构并
我正在下载一个 JSON 文件,我已将其检查为带有“https://jsonlint.com”的有效 JSON 到文档目录。然后我打开文件并再次检查,结果显示为无效的 JSON。这怎么可能????这是
我正在尝试根据从 API 接收到的数据动态创建一个 JSON 对象。 收到的示例数据:将数据解码到下面给出的 CiItems 结构中 { "class_name": "test", "
我想从字符串转换为对象。 来自 {"key1": "{\n \"key2\": \"value2\",\n \"key3\": {\n \"key4\": \"value4\"\n }\n
目前我正在使用以下代码将嵌套的 json 转换为扁平化的 json: import ( "fmt" "github.com/nytlabs/gojsonexplode" ) func
我有一个使用来自第三方 API 的数据的应用程序。我需要将 json 解码为一个结构,这需要该结构具有“传入”json 字段的 json 标签。传出的 json 字段具有不同的命名约定,因此我需要不同
我想使用 JSON 架构来验证某些值。我有两个对象,称它们为 trackedItems 和 trackedItemGroups。 trackedItemGroups 是组名称和 trackedItem
考虑以下案例类模式, case class Y (a: String, b: String) case class X (dummy: String, b: Y) 字段b是可选的,我的一些数据集没有字
我正在存储 cat ~/path/to/file/blah | 的输出jq tojson 在一个变量中,稍后在带有 JSON 内容的 curl POST 中使用。它运作良好,但它删除了所有换行符。我知
我是一名优秀的程序员,十分优秀!