如何使用 Swiftui 检查 JSON 是否缺少键值对

发布于 2025-01-10 06:54:23 字数 173 浏览 0 评论 0原文

我已经解析了来自 YouTube 的 JSON,但数组中的每个项目不一定都具有特定的 Key:Value 对,因此我收到了致命错误。我唯一的解决方案是注释掉模型中的某些键:值。不过,我想要一个更合适的解决方案,但我不确定动态保护丢失的键:值的正确方法。

任何人都可以帮我提供一种在 swiftui 中执行此操作的方法。

I've parsed a JSON from YouTube and not every item in the array necessarily have certain Key:Value pairs, thus I get a fatal error. My only solution has been to comment out certain key:values from my Model. However I'd like a more appropriate solution but I'm not sure the right way to dynamically guard for missing key:values.

Can anyone help me with a method for doing this in swiftui.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦与时光遇 2025-01-17 06:54:23

首先,解码 JSON 并不特定于 SwiftUI,唯一使用 SwiftUI 的时间是与用户界面交互时。

您可以在 structclass 的自定义初始值设定项中使用如下所示的内容

init(from decoder: Decoder) throws {
    let values = try decoder.container(keyedBy: CodingKeys.self)
    latitude = try values.decodeIfPresent(Double.self, forKey: .latitude)
}

所请求类型的解码值,如果解码器没有与给定键关联的条目,或者该值为空值,则为 nil。

https://developer.apple.com/documentation/swift/keyeddecodingcontainer/2893445- decodeifpresent

下面是有关解码和编码自定义类型的 Apple 文档

https://developer.apple.com/documentation/foundation/archives_and_serialization/encoding_and_decoding_custom_types

First, decoding a JSON is not specific to SwiftUI, the only time SwiftUI is used is when interacting with the User Interface.

You can use something like below in a custom initializer for your struct or class

init(from decoder: Decoder) throws {
    let values = try decoder.container(keyedBy: CodingKeys.self)
    latitude = try values.decodeIfPresent(Double.self, forKey: .latitude)
}

A decoded value of the requested type, or nil if the Decoder does not have an entry associated with the given key, or if the value is a null value.

https://developer.apple.com/documentation/swift/keyeddecodingcontainer/2893445-decodeifpresent

Below is the Apple documentation on decoding and encoding custom types

https://developer.apple.com/documentation/foundation/archives_and_serialization/encoding_and_decoding_custom_types

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文