我想使用网址
从Flickr公开提供的Feed中使用JSONhttps://api.flickr.com/services/feeds/photos_public.gne?nojsoncallback=1&format=json
我正在尝试使用Alamofire来使用JSON,然后使用ObjectMapper将JSON映射到基本的照片数据模型。
我遇到的问题是我无法解析JSON然后映射它。
objects = Mapper<Photo>().mapArray(JSONArray: json)!
返回:
Cannot convert value of type 'JSON' to expected argument type '[[String : Any]]'
我的代码如下;
FlickrAPI.executeRequestURL(url, parameters: parameters) { (success, error, response) in
if (success) {
//print ("Response: \(response)")
if let jsonObject = response?.result.value {
let json = JSON(jsonObject)
objects = Mapper<Photo>().mapArray(JSONArray: json)!
}
}
else {
print ("** Error -- \(error?.localizedDescription) **")
taskCallback(false, error)
}
}
// Execute URL request code:
static func executeRequestURL(_ requestURL: URL, parameters:[String: String], taskCallback: @escaping (Bool, Error?, DataResponse<Any>?) -> ())
{
print ("Attempting URL -- \(requestURL)")
Alamofire.request(requestURL, parameters:["nojsoncallback": "1", "format": "json"])
.validate(statusCode: 200..<300)
.validate(contentType: ["application/json"])
.responseJSON { response in
switch(response.result) {
case .success(_):
taskCallback(true, nil, response)
break
case .failure(_):
print("Error while fetching url: \(response.result.error)")
taskCallback(false, response.result.error, nil)
break
}
}
}
// Photo model
final class Photo: Object, Mappable {
private(set) dynamic var uuid: String = UUID().uuidString
dynamic var name: String = ""
dynamic var author_id: String = ""
dynamic var title: String = ""
override public static func primaryKey() -> String? {
return "uuid"
}
required convenience public init?(map: Map) {
self.init()
}
// MARK: - ObjectMapper protocol methods
public func mapping(map: Map) {
self.name <- map["name"]
self.author_id <- map["author_id"]
self.title <- map["title"]
}
在查看照片公开网址时,我注意到响应将照片对象整理在一个名为"items":
的数组中
我读到我可以使用AlamofireObjectMapper
来帮忙;但我对如何实际使用它感到困惑。
无论如何,我的查询具体是如何使用ObjectMapper在Flickr Public照片Feed中使用items
数组?
非常感谢
答案 0 :(得分:0)
我能够使用AlamofireObjectMapper
解决这个问题首先,创建一个类来保存响应。 其次要确保这个类符合映射;
request
然后,当我调用执行URL时,我稍微改变它,以便它符合这个类;
// Required to help integrate Alamofire with Objectmapper (via AlamofireObjectMapper)
final class PhotoResponse: Mappable {
var items: [Photo]?
required init?(map: Map){
}
func mapping(map: Map) {
items <- map["items"]
}
}
这里的关键部分是static func executeRequestURL(_ requestURL: URL, parameters:[String: String], taskCallback: @escaping (Bool, Error?, DataResponse<PhotoResponse>?) -> ())
{
print ("Attempting URL -- \(requestURL)\n")
Alamofire.request(requestURL, parameters:["nojsoncallback": "1", "format": "json"])
.validate(statusCode: 200..<300)
.validate(contentType: ["application/json"])
.responseObject { (response: DataResponse<PhotoResponse>) in
switch(response.result) {
case .success(_):
taskCallback(true, nil, response)
break
case .failure(_):
print("** Error while fetching url: \(response.result.error) **")
taskCallback(false, response.result.error, nil)
break
}
}
}
行。
最后,当我们通过我的response: DataResponse<PhotoResponse>) in
函数调用它时,我可以查询返回的结果
fetchPublicPhotos