我在 JSON 返回中获得了以前从未见过的日期格式。
"/Date(965620800000-0400)/"
(这是Mon Aug 07 2000 00:00:00 GMT-0400
)
它是以毫秒为单位的日期值,带有 GMT 偏移量。我正在尝试使用 Swift 的原生JSONDecoder
并设置dateDecodingStrategy
。
最初,我尝试了这个:
let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .millisecondsSince1970
正如我最初怀疑的那样,由于额外的非数字字符,它不起作用。这是我得到的最初错误:
debugDescription:"预期解码双精度,但找到一个字符串/数据 而是",底层错误:nil)) 无法读取数据,因为它 格式不正确。
我在 Unicode.org 上挖了一圈,发现了这个,它说A
是毫秒,Z
是ISO8601的基本 forrmat,带有小时、分钟和可选的秒字段。
考虑到这一点,我做了一个DateFormatter
扩展:
extension DateFormatter {
static let nhtsaFormat: DateFormatter = {
let formatter = DateFormatter()
// This is the string that comes back --> "/Date(965620800000-0400)/"
// These are the formats I tried:
formatter.dateFormat = "'/Date('AZ')/'"
// formatter.dateFormat = "'/Date('A')/'"
// formatter.dateFormat = "'/Date('A`-`Z')/'"
// formatter.dateFormat = "'/Date('A'-'Z')/'"
// formatter.locale = Locale(identifier: "en_US_POSIX")
return formatter
}()
}
在我的DataManager
课上,我将decoder.dateDecodingStrategy
更改为我的自定义格式,如下所示:
decoder.dateDecodingStrategy = .formatted(.nhtsaFormat)
对于每种格式,我仍然收到此错误:
debugDescription:"预期解码双精度,但找到一个字符串/数据 而是",底层错误:nil)) 无法读取数据,因为它 格式不正确。
我尝试从我的Codable
结构中删除有问题的日期键,我得到了正确的回报,但不幸的是,我也需要日期。非常感谢我如何解码该字符串的任何建议。
您无法使用标准DateFormatter
解析此类日期字符串,因为没有表示"自纪元以来的秒(或毫秒)"的标准格式说明符。A
格式说明符表示"一天中的秒数"。
一种解决方案是将.custom
日期解码策略与可以分析此类字符串的自定义方法一起使用。
以下是一些有效的测试代码:
func customDateParser(_ decoder: Decoder) throws -> Date {
let dateString = try decoder.singleValueContainer().decode(String.self)
let scanner = Scanner(string: dateString)
var millis: Int64 = 0
if scanner.scanString("/Date(", into: nil) &&
scanner.scanInt64(&millis) &&
scanner.scanInt(nil) &&
scanner.scanString(")/", into: nil) &&
scanner.isAtEnd {
return Date(timeIntervalSince1970: TimeInterval(millis) / 1000)
} else {
return Date() // TODO - unexpected format, throw error
}
}
let json = "{ "date": "/Date(965620800000-0400)/" }".data(using: .utf8)!
struct Test: Decodable {
var date: Date
}
let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .custom(customDateParser)
let test = try! decoder.decode(Test.self, from: json)
print(test)
请注意,日期字符串中的时区偏移量无关紧要。不需要生成正确的Date
实例。
我把错误处理留给了读者练习。