0

我需要在我的 iOS 应用程序中快速解析JSOG 。我正在尝试自己编写反序列化器,但我不知道如何使用如此抽象的值。我有类似的东西,但它没有用。

func parseElemJsog(refs: inout [String: Any], elem: Any) -> Any {
    if elem is [Any] {

        for subelem in elem as! [Any] {
            parseElemJsog(refs: &refs, elem: subelem)
        }

    } else if elem is [String : Any] {

        var dict = elem as! [String : Any]

        if dict["@ref"] == nil {
            refs[dict["@id"] as! String] = dict
            dict.removeValue(forKey: "@id")
            for subelem in dict {
                if subelem.key != "@id" {
                    parseElemJsog(refs: &refs, elem: subelem.value, resutl: &resutl)
                }
            }
        } else {
            let refId = dict["@ref"] as! String
            for (key, value) in refs[refId] as! [String: Any] {
                dict[key] = value
            }
        }
    } else {

    }
}

而且我不能使用JSONDecoder,因为我没有一些数据模型。任何人都可以建议我一些库或方法来解析 jsog 吗?我不知道该怎么办。感谢关注。

我想解析这样的东西:

[
    {
        "@id": "1",
        "name": "Sally",
        "secretSanta": {
            "@id": "2",
            "name": "Bob",
            "secretSanta": {
                "@id": "3",
                "name": "Fred",
                "secretSanta": { "@ref": "1" }
            }
        }
    },
    { "@ref": "2" },
    { "@ref": "3" }
]
4

0 回答 0