gpt4 book ai didi

json - 使用 AlamofireObjectMapper 进行映射模型 - swift

转载 作者:行者123 更新时间:2023-11-30 11:57:09 24 4
gpt4 key购买 nike

我正在使用AlamofierObjectMapper将我的 json 从服务器映射到我的模型。从服务器接收到的json是这样的:

[
{
"Title": "string",
"ImageUrl": "string",
"Url": "string",
"UrlType": "none"
}
]

我用于映射的类是:

class Banner: Mappable {
var Title: String?
var ImageUrl: String?
var Url: String?
var UrlType: String?

required init?(map: Map) {

}

// Mappable
func mapping(map: Map) {
Title <- map["Title"]
ImageUrl <- map["ImageUrl"]
Url <- map["Url"]
UrlType <- map["UrlType"]
}
}

我的类不是数组,但我的 json 是数组。我怎样才能获取数据而不像这样:

{
"result" : [
{
"Title": "string",
"ImageUrl": "string",
"Url": "string",
"UrlType": "none"
}
]
}

编辑:

我的要求:

Alamofire.request(url, method: .get)
.responseObject { (response: DataResponse<Banner>) in

}

最佳答案

很简单,只需要使用responseArray方法即可:

Alamofire.request(url, method: .get).responseArray { (response: DataResponse<[Banner]>) in

let bannersArray = response.result.value

if let bannersArray = bannersArray {
for banner in bannersArray {
// Do anything with it
}
}
}

关于json - 使用 AlamofireObjectMapper 进行映射模型 - swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47680767/

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