我是iOS和Swift开发环境的新手。我试图使用Alamofire来提取JSON和AlamofireObjectMapper,以便将检索到的JSON集合映射回我的Swift对象。
问题是我能够通过Alamofire请求获取JSON并显示计数,但映射部分似乎显示为零。是我错过了什么。感谢帮助。
import UIKit
import CoreLocation
import ObjectMapper
class BranchObjectMapper : Mappable {
// MARK: Properties
var id: Int?
var cityId: Int?
var areaId: Int?
var name: String?
var nameAr: String?
var branchAddr: String?
var branchAddr2: String?
var location: CLLocation?
required init?(_ map: Map) {
mapping(map)
}
func mapping(map: Map) {
id <- map["id"]
cityId <- map["cityId"]
areaId <- map["areaId"]
name <- map["name"]
nameAr <- map["nameAr"]
branchAddr <- map["branchAddr"]
branchAddr2 <- map["branchAddr2"]
location <- map["location"]
}
}
请求viewDidLoad()
Alamofire.request(.GET, UrlEndpoints.branchUrl()).responseArray { (response: Response<[BranchObjectMapper], NSError>) in
self.branchList = response.result.value!
print(self.branchList.count) // count is correct
for branch in self.branchList {
print(branch.id) // prints nil
print(branch.id) // prints nil
}
}
提前致谢
完整的JSON响应如下所示。在Model中只构建了所需的那些。
[{“Id”:“16”,“areaId”:“17”,“name”:“Al Aqiq”,“cityId”:4“,”Zip“:”“,”nameAr“:” u0637 \ u0631 \ u064a \ u0642 \ u0642 \ u0644 \ u0645 \ n“,”branchAddr“:”test“,”branchAddr2“:”test“纬度”:“24.60425”,“经度”:“46.629631”,“cityId”:“ 1" }]
答案 0 :(得分:8)
我认为你错过了ObjectMapper lib的正确文档。 请检查此Github ObjectMapper。
这些是lib支持的类型:
Int
Bool
Double
Float
String
RawRepresentable
(枚举)Array<AnyObject>
Dictionary<String, AnyObject>
Object<T: Mappable>
Array<T: Mappable>
Array<Array<T: Mappable>>
Set<T: Mappable>
Dictionary<String, T: Mappable>
Dictionary<String, Array<T:Mappable>>
因此,如果您尝试映射不在该列表中的对象,则结果为nil
。
在你的情况下是var location: CLLocation?
。
如果需要映射CLLocation对象,一种方法是使用以下所有属性映射CustomCLLocation: JSON(我不知道你的Json,这是一个例子)
"location":{
"long": 43.666,
"lat": 73.4
}
Swift:创建另一个文件“CustomCLLocation”,例如第一个文件,但用于映射CLLocation和你的Json
var latitude: Double?
var longitude: Double?
required init?(_ map: Map) {
mapping(map)
}
func mapping(map: Map) {
longitude <- map["long"]
latitude <- map["lat"]
}
现在,您可以映射“假”CLLocation对象: var location:CustomCLLocation?
然后,如果你想要一个真正的CLLocation。只需像这样创建一个Simply Extension(将它添加到CustomCLLocation文件中):
extension CLLocation {
public class func createFromCustomCLLocation(custom: CustomCLLocation) -> CLLocation {
return self.init(custom.latitude,custom.longitude)
}
}
使用转换:
var locationCLL = CLLocation.createFromCustomCLLocation(location) // now is a CLLocation
我在我的应用程序上使用最新版本的AlamofireObjectMapper for ios 8.0 +
Alamofire.request(.GET, UrlEndpoints.branchUrl()).responseArray { (response: [BranchObjectMapper]?, error : ErrorType?) in
if(error != nil) {
print(error)
}else{
print("data downloaded")
if let response = response {
branchList(response)
for branch in self.branchList {
print(branch.id)
print(branch.name)
}
}
}
}
答案 1 :(得分:0)
如果您在映射String和Int变量时遇到问题,那就是因为您忘记在dynamic
之前添加var
。
示例: dynamic var id : Int?