gpt4 book ai didi

JSONDecoder 无法处理空响应

转载 作者:搜寻专家 更新时间:2023-11-01 05:51:56 25 4
gpt4 key购买 nike

上下文

我正在使用 Firebase Database REST API 和 JSONDecoder/JSONEncoder。到目前为止,它一直运行良好。然而,对于 removing data,预期返回的响应是 null,而 JSONDecoder 似乎不太喜欢这样。

这是我通过 Postman 发送的查询类型以及我返回的内容(不包括敏感数据)。

DELETE /somedata/-LC03I3oHcLhQ/members/ZnWsJtrZ5UfFS6agajbL2hFlIfG2.json
content-type: application/json
cache-control: no-cache
postman-token: ab722e0e-98ed-aaaa-bbbb-123f64696123
user-agent: PostmanRuntime/7.2.0
accept: */*
host: someapp.firebaseio.com
accept-encoding: gzip, deflate
content-length: 39


HTTP/1.1 200
status: 200
server: nginx
date: Thu, 02 Aug 2018 21:53:27 GMT
content-type: application/json; charset=utf-8
content-length: 4
connection: keep-alive
access-control-allow-origin: *
cache-control: no-cache
strict-transport-security: max-age=31556926; includeSubDomains; preload

null

如您所见,响应代码为 200,正文为 null

错误

当我收到响应时,这是我得到的错误:

Swift.DecodingError.dataCorrupted(Swift.DecodingError.Context(codingPath: [], debugDescription: "The given data was not valid JSON.", underlyingError: Optional(Error Domain=NSCocoaErrorDomain Code=3840 "JSON text did not start with array or object and option to allow fragments not set." UserInfo={NSDebugDescription=JSON text did not start with array or object and option to allow fragments not set.}))))

我尝试创建自定义类型 (NoReply) 来按照 a previous post 处理此问题,但无济于事。

代码

这是错误发生的地方:

        resource: {
let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .iso8601
return try decoder.decode(Resource.self, from: $0)
},
error: {
let decoder = JSONDecoder()
return try decoder.decode(FirebaseError.self, from: $0)
}

显然,即使我提供自定义 NoReply 类型(根据上面提到的帖子),JSONDecoder 也不喜欢 null

有什么建议吗?


作为旁注,这是他们的文档中关于 DELETE 操作响应的内容:

A successful DELETE request is indicated by a 200 OK HTTP status code with a response containing JSON null.

最佳答案

快速跟进

在几次成功的破解之后,我想出的最优雅的解决方案是结合:

  • 使用 NoReply(如 Zoul 所述)
  • null 字符串转换为空 JSON 对象结构 ({})

首先,转换:

            if "null" == String(data: data, encoding: .utf8) {
let json = Data("{}".utf8)

然后反馈给处理请求响应的闭包:

        resource: {
let decoder = JSONDecoder()
return try decoder.decode(Resource.self, from: $0)
},

资源就是:

public struct NoReply: Decodable {}

这现在工作得很好,允许我处理一个不存在的对象的 DELETE 和 GET 情况,它返回 null

感谢您的帮助!

关于JSONDecoder 无法处理空响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51663004/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com