gpt4 book ai didi

ios - SwiftyJSON 问题

转载 作者:行者123 更新时间:2023-11-30 13:54:18 27 4
gpt4 key购买 nike

我正在使用 Alamofire 从 API 获取数据。我正在使用 SwiftyJSON 来解析 JSON 响应。目前,我正在迭代产品数据,并希望提取产品详细信息并将其显示在 Collection View 中。问题是,我似乎无法弄清楚如何访问阵列中的每个产品。这是返回的数组:

{
"1": {
"product_id": 2982493187,
"merged_status": "TRUE",
"merged": [
{
"id": 2982493187,
"title": "Waves Eclipse Tee in Black",
"handle": "waves-eclipse-tee-in-black",
"published_at": "2015-10-09T21:00:50-07:00",
"published_scope": "global",
}
]
}
},
{
"2": {
"product_id": 2982432131,
"merged_status": "TRUE",
"merged": [
{
"id": 2982432131,
"title": "Waves Eclipse Tee in Off White",
"handle": "waves-eclipse-tee-in-off-white",
"published_at": "2015-10-09T21:00:50-07:00",
"published_scope": "global",
}
]
}
}

对于这些产品中的每一个,我都想访问product_id。我试图这样做:productArray[0]["produdct_id"].int,但它似乎不起作用。有任何想法吗?

最佳答案

结果中没有数组,而是包含“1”、“2”等键的字典。

let product_id = result["1"]["product_id"].int

关于ios - SwiftyJSON 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33838371/

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