文件名称:JSONCodable:JSON Codable是我们90%的时间所需要的
文件大小:7KB
文件格式:ZIP
更新时间:2024-04-01 08:16:01
swift json Swift
JSONCodable JSON Codable是我们90%的时间所需要的。 用法 struct Filter : JSONCodable { let id: String } let jsonString = try Filter ( id : " foo " ). toJSON () 或使用CodableFormat : struct Filter : Codable { let id: String } let data = try Filter ( id : " foo " ). to (. json ) let filter = try Filter. from (data, format : . json ) 自订格式 要添加自定义格式,可以将其添加到CodableFormat如下所示: extension CodableFormat { private s
【文件预览】:
JSONCodable-master
----.gitignore(2KB)
----Sources()
--------JSONCodable()
----LICENSE(1KB)
----.github()
--------workflows()
----README.md(1KB)
----Package.swift(422B)
----Tests()
--------LinuxMain.swift(127B)
--------JSONCodableTests()