gpt4 book ai didi

ios - 将 JSON 数据存储到 Swift 4 中的模型类数组中

转载 作者:搜寻专家 更新时间:2023-10-31 22:55:44 24 4
gpt4 key购买 nike

我想将获取的 JSON 数据存储到我的模型类数组 propertyArray。一些我如何使用 Alamofire 库获取 JSON 数据,现在我想将该数据解析为 PropertyList 模型类的属性。我无法将 JSON 数据解析为 propertyArray。我在堆栈溢出上提到了这个问题的许多其他解决方案,但没有得到任何合适的解决方案。

声明的模型类数组

var propertyArray: [PropertyList]? = []

Alamofire 函数

func dataPass()  {
print("Landlord id is \(land.id)")
let para: Parameters = ["id": land.id]
Alamofire.request(URL_Landlord_Property_List, method: .post, parameters: para).responseJSON { response in
if let dictionary = response.result.value as? [String : AnyObject]{
var prop = PropertyList()
let data = dictionary["data"] as! [Any]
print(data)
}
}
}

属性列表

import Foundation

struct PropertyList{
var property_id: String?
var user_id: String?
var property_code: String?
var property_added_date: String?
var property_updated_date: String?
var property_termination_date: String?
var property_ASYS_no: String?
var propertyCode: String?
var property_address_1:String?
var property_address_2: String?
var property_address_3: String?
var property_city: String?
var property_cluster:String?
var property_area:String?
var property_postcode: String?
var property_landlord_ref_code: String?
var property_landlord_id: String?
}

JSON 数据

{
"success": true,
"data": [
{
"property_id": "1",
"user_id": "1",
"property_code": "0001",
"property_added_date": "2017-12-13",
"property_updated_date": "2017-12-13 00:00:00",
"property_termination_date": null,
"property_ASYS_no": "ASYS 001",
"propertyCode": "0001-PUNE1",
"property_address_1": "PUNE1",
"property_address_2": "PUNE2",
"property_address_3": "PUNE3",
"property_city": "PUNE",
"property_cluster": "1",
"property_area": "1",
"property_postcode": "424031",
"property_landlord_ref_code": null,
"property_landlord_id": "1"
},
{
"property_id": "2",
"user_id": "1",
"property_code": "0002",
"property_added_date": "2017-12-14",
"property_updated_date": "2017-12-18 00:00:00",
"property_termination_date": null,
"property_ASYS_no": "asys 0200",
"propertyCode": "0002-hadpasar1",
"property_address_1": "hadpasar1",
"property_address_2": "hadpasar2",
"property_address_3": "hadpasar3",
"property_city": "pune",
"property_cluster": "9",
"property_area": "2",
"property_postcode": "012121",
"property_landlord_ref_code": null,
"property_landlord_id": "1"
}
]
}

最佳答案

看起来您的 JSON 是一个包含字典的数组。 (键值数据结构)

这应该可以解决问题。

 let data = dictionary["data"] as! [[String: Any]]

然后在你的构造函数中解析它:

struct PropertyList{

init(dict: [String: Any){
//parse here...
self.property_id = dict["property_id"] as! String
}

}

添加到数组:

 for dict in data{
let propertyList = PropertyList(dict: dict)
propertyArray.append(propertyList)
}

关于ios - 将 JSON 数据存储到 Swift 4 中的模型类数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48200682/

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