gpt4 book ai didi

json - 如何用Alamofire+ObjectMapper映射JSON响应的多维数组?

转载 作者:搜寻专家 更新时间:2023-11-01 05:33:51 25 4
gpt4 key购买 nike

我正在尝试使用 Alamofire+ObjectMapper 开始我的项目。

我可以使用对象数组(使用键)进行简单映射。

但是,这是必须的情况,我必须处理以下类型的 JSON 格式,它存在一些问题:

1:非常嵌套的数组(3维)

2:每一关的数组没有key

所以我不能像 JSON 所代表的那样创建对象。请帮忙!!


我的 JSON 字典:

{
"structure_model": [
[
[
{
"test": "test"
}
]
]
]
}

我的模型:

class Component: Mappable, Codable {
var test : String = ""
required init?(map: Map) {

}

func mapping(map: Map) {
test <- map["test"]
}


}

class StructureModel: Mappable, Codable {

var structureModels : [Array<Array<Component>>]?

required init?(map: Map){

}

func mapping(map: Map) {
structureModels <- map["structure_model"]
}
}

我做了什么:

Alamofire.request(API, method: .post, parameters: parameters, encoding: JSONEncoding.default).validate().responseObject { (response: DataResponse<StructureModel>) in etc... }

我期望是这样的:

structureModels = [ 
[
[Component, Component, ...],
[Component, Component, ...],
...
] ,
[
[Component, Component, ...],
[Component, Component, ...],
...
] ,
...]

我得到了什么:

structureModels = nil

最佳答案

如果您的 JSON 结构是数组的数组,您可以使用:

让 responseArrayOfArrays = Mapper<"YourModel">().mapArrayOfArrays(JSONObject: response?.rawValue)

关于json - 如何用Alamofire+ObjectMapper映射JSON响应的多维数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46787347/

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