gpt4 book ai didi

swift - 使用 Swift ObjectMapper 库访问映射中的 JSONString

转载 作者:行者123 更新时间:2023-11-30 12:44:25 24 4
gpt4 key购买 nike

我想返回 native JSON 字符串以存储在 Realm 中,因为 Realm 无法存储 native 对象的集合。

JSON 示例:{ "root": { "id":1, "name":"name", "array":["a", "b", "c"] }}

func mapping(map:Map) {
id <- map["id]
name <- map["name"]
array <- map["array"].JSONString // array = "[\"a\", \"b\", \"c\"]"
}

这可能吗?

github 上有同样的问题 https://github.com/Hearst-DD/ObjectMapper/issues/730

最佳答案

如果有帮助的话,Realm 确实可以 store collections of sub-objects .

class StringObject: Object {
dynamic var string = ""
}

class Root: Object {
dynamic var id = 0
dynamic var name = ""
let array = List<StringObject>()
}

除此之外,如果我正确理解了 ObjectMapper,当 map["array"] 已经传入 mapping 时,它已经从 JSON 转换为 Swift目的。在这种情况下,您需要reserialize it back into JSON你自己。

关于swift - 使用 Swift ObjectMapper 库访问映射中的 JSONString,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41814423/

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