gpt4 book ai didi

ios - 将 JSON(日期)解析为 Swift

转载 作者:搜寻专家 更新时间:2023-10-30 22:07:40 25 4
gpt4 key购买 nike

我的 Swift 应用程序中有一个返回 JSON,并且有一个返回日期的字段。当我引用此数据时,代码会给我类似“/Date (1420420409680)/”的信息。我如何将其转换为 NSDate?请在 Swift 中,我用 Objective-C 测试了示例,但没有成功。

最佳答案

这看起来与 Microsoft 的 ASP.NET AJAX 使用的日期的 JSON 编码非常相似,在 An Introduction to JavaScript Object Notation (JSON) in JavaScript and .NET 中描述:

For example, Microsoft's ASP.NET AJAX uses neither of the described conventions. Rather, it encodes .NET DateTime values as a JSON string, where the content of the string is /Date(ticks)/ and where ticks represents milliseconds since epoch (UTC). So November 29, 1989, 4:55:30 AM, in UTC is encoded as "\/Date(628318530718)\/".

唯一的区别是你的格式是 /Date(ticks)/而不是 \/Date(ticks)\/

您必须提取括号之间的数字。将其除以 1000给出自 1970 年 1 月 1 日以来的秒数。

下面的代码展示了如何做到这一点。它被实现为NSDate 的“可失败便利初始化器”:

extension NSDate {
convenience init?(jsonDate: String) {

let prefix = "/Date("
let suffix = ")/"
// Check for correct format:
if jsonDate.hasPrefix(prefix) && jsonDate.hasSuffix(suffix) {
// Extract the number as a string:
let from = jsonDate.startIndex.advancedBy(prefix.characters.count)
let to = jsonDate.endIndex.advancedBy(-suffix.characters.count)
// Convert milliseconds to double
guard let milliSeconds = Double(jsonDate[from ..< to]) else {
return nil
}
// Create NSDate with this UNIX timestamp
self.init(timeIntervalSince1970: milliSeconds/1000.0)
} else {
return nil
}
}
}

示例用法(使用您的日期字符串):

if let theDate = NSDate(jsonDate: "/Date(1420420409680)/") {
print(theDate)
} else {
print("wrong format")
}

这给出了输出

2015-01-05 01:13:29 +0000

Update for Swift 3 (Xcode 8):

extension Date {
init?(jsonDate: String) {

let prefix = "/Date("
let suffix = ")/"

// Check for correct format:
guard jsonDate.hasPrefix(prefix) && jsonDate.hasSuffix(suffix) else { return nil }

// Extract the number as a string:
let from = jsonDate.index(jsonDate.startIndex, offsetBy: prefix.characters.count)
let to = jsonDate.index(jsonDate.endIndex, offsetBy: -suffix.characters.count)

// Convert milliseconds to double
guard let milliSeconds = Double(jsonDate[from ..< to]) else { return nil }

// Create NSDate with this UNIX timestamp
self.init(timeIntervalSince1970: milliSeconds/1000.0)
}
}

例子:

if let theDate = Date(jsonDate: "/Date(1420420409680)/") {
print(theDate)
} else {
print("wrong format")
}

关于ios - 将 JSON(日期)解析为 Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27908219/

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