我只是很好奇如何将String键和Encodable值的字典编码为JSON。

例如:

let dict: [String: Encodable] = [
    "Int": 1,
    "Double": 3.14,
    "Bool": false,
    "String": "test"
]

dict中的键都是String类型,但是值的类型各不相同。

但是,JSON中允许所有这些类型。

我想知道是否有一种方法可以在Swift 4中使用JSONEncoder将此dict编码为JSON Data

我确实知道还有其他方法可以不使用JSONEncoder来实现这一目标,但是我只是想知道JSONEncoder是否能够管理此问题。
Dictionary的扩展名中确实包含func encode(to encoder: Encoder) throws,但这仅适用于约束Key: Encodable, Key: Hashable, Value: Encodable,而对于我们的dict,则需要约束Key: Encodable, Key: Hashable, Value == Encodable

为此拥有一个struct就足以使用JSONEncoder
struct Test: Encodable {
    let int = 1
    let double = 3.14
    let bool = false
    let string = "test"
}

但是,我很想知道是否可以在不指定具体类型而仅指定Encodable协议(protocol)的情况下完成此操作。

最佳答案

只是想出了一种使用包装器实现此目的的方法:

struct EncodableWrapper: Encodable {
    let wrapped: Encodable

    func encode(to encoder: Encoder) throws {
        try self.wrapped.encode(to: encoder)
    }
}

let dict: [String: Encodable] = [
    "Int": 1,
    "Double": 3.14,
    "Bool": false,
    "String": "test"
]
let wrappedDict = dict.mapValues(EncodableWrapper.init(wrapped:))
let jsonEncoder = JSONEncoder()
jsonEncoder.outputFormatting = .prettyPrinted
let jsonData = try! jsonEncoder.encode(wrappedDict)
let json = String(decoding: jsonData, as: UTF8.self)
print(json)

结果如下:



我仍然不满意。如果还有其他方法,我很高兴看到它。

谢谢!

编辑1将包装器移到JSONEncoder的扩展名中:
extension JSONEncoder {
    private struct EncodableWrapper: Encodable {
        let wrapped: Encodable

        func encode(to encoder: Encoder) throws {
            try self.wrapped.encode(to: encoder)
        }
    }
    func encode<Key: Encodable>(_ dictionary: [Key: Encodable]) throws -> Data {
        let wrappedDict = dictionary.mapValues(EncodableWrapper.init(wrapped:))
        return try self.encode(wrappedDict)
    }
}

let dict: [String: Encodable] = [
    "Int": 1,
    "Double": 3.14,
    "Bool": false,
    "String": "test"
]

let jsonEncoder = JSONEncoder()
jsonEncoder.outputFormatting = .prettyPrinted
let jsonData = try! jsonEncoder.encode(dict)
let json = String(decoding: jsonData, as: UTF8.self)
print(json)

结果:



编辑2:根据@Hamish的评论考虑自定义策略
private extension Encodable {
    func encode(to container: inout SingleValueEncodingContainer) throws {
        try container.encode(self)
    }
}

extension JSONEncoder {
    private struct EncodableWrapper: Encodable {
        let wrapped: Encodable

        func encode(to encoder: Encoder) throws {
            var container = encoder.singleValueContainer()
            try self.wrapped.encode(to: &container)
        }
    }

    func encode<Key: Encodable>(_ dictionary: [Key: Encodable]) throws -> Data {
        let wrappedDict = dictionary.mapValues(EncodableWrapper.init(wrapped:))
        return try self.encode(wrappedDict)
    }
}

关于dictionary - 编码[String : Encodable] dictionary into JSON using JSONEncoder in Swift 4,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51447254/

10-10 08:11