gpt4 book ai didi

json - 在 Swift 中将数组元素转换为合适的 json

转载 作者:行者123 更新时间:2023-11-30 11:14:32 26 4
gpt4 key购买 nike

我有一个数字数组,例如 [1, 2],我想将其转换为 json 格式:

["id_list":
[
{
"id" : 1
},

{
"id" : 2
}
]
]

这可以在 Swift 中完成吗?

最佳答案

你可以试试

struct Root :Codable {

let id_list:[InnerItem]
}

struct InnerItem : Codable {

var id:String

}

//

let arr = [1,2]

let js = Root(id_list:arr.map { InnerItem(id: "\($0)")})

do {

let en = try JSONEncoder().encode(js)

let json = String(data: en, encoding:.utf8)!

print(json)

}
catch {

print(error)
}

//

enter image description here

关于json - 在 Swift 中将数组元素转换为合适的 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51874214/

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