映射顶级 JSON 字符串数组对象映射器
map top level JSON String array Object Mapper
如何 mpa 顶层 JSON 字符串数组
JSON Response from server
[
"tag1",
"tag2",
"tag3",
"tag4",
"tag5",
"tag6"
]
我正在使用 ObjectMapper Swift
Solved it without ObjectMapper:
根据服务器的响应将原始 JSON 转换为 字符串数组
...
..
case .Success(let request, _, _):
self.request = request.responseJSON{ json in
if json.result.isSuccess {
if let tags = json.result.value as? [String]{ // Cast it as String Array
self.remoteTags.removeAll()
tags.forEach{self.remoteTags.append([=10=])}
}
self.reloadData()
}
}
...
..
[注意:使用Alamofire进行网络操作]
如何 mpa 顶层 JSON 字符串数组
JSON Response from server
[
"tag1",
"tag2",
"tag3",
"tag4",
"tag5",
"tag6"
]
我正在使用 ObjectMapper Swift
Solved it without ObjectMapper:
根据服务器的响应将原始 JSON 转换为 字符串数组
...
..
case .Success(let request, _, _):
self.request = request.responseJSON{ json in
if json.result.isSuccess {
if let tags = json.result.value as? [String]{ // Cast it as String Array
self.remoteTags.removeAll()
tags.forEach{self.remoteTags.append([=10=])}
}
self.reloadData()
}
}
...
..
[注意:使用Alamofire进行网络操作]