我收到了格式的JSON响应:
{
"current_page":1,
"data":[
{
"id":1,
"title":"Title 1"
},
{
"id":2,
"title":"Title 2"
},
{
"id":3,
"title":"Title 3"
}
]
}
如您所见,data
包含一个对象列表,在本例中是一个Post
s列表。这是我的Realm / Objectmapper Post
类:
import RealmSwift
import ObjectMapper
class Post: Object, Mappable {
let id = RealmOptional<Int>()
@objc dynamic var title: String? = nil
required convenience init?(map: Map) {
self.init()
}
func mapping(map: Map) {
}
}
我创建了一个通用类(我不确定它是否正确)来处理Pagination
响应。我希望它是通用的,因为我有其他分页响应返回User
s而不是Post
s,以及其他对象。
这是我目前的Pagination
课程:
import ObjectMapper
class Pagination<T: Mappable>: Mappable {
var data: [T]?
required convenience init?(map: Map) {
self.init()
}
func mapping(map: Map) {
data <- map["data"]
}
}
但是,我不确定我是否写得正确。
这里是我调用端点发送分页数据的类(我删除了不相关的代码):
var posts = [Post]()
provider.request(.getPosts(page: 1)) { result in
switch result {
case let .success(response):
do {
let json = try JSONSerialization.jsonObject(with: response.data, options: .allowFragments)
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
// Not sure what to do here to handle and retrieve the list of Posts
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
// Eventually, I need to append the posts to the variable
// self.posts.append(pagination.data)
// Reload the table view's data
self.tableView.reloadData()
} catch {
print(error)
}
case let .failure(error):
print(error)
break
}
}
如何正确处理JSON响应以获取Post
s列表,然后将它们附加到var posts = [Post]()
变量?我是否需要对我的Pagination
课程进行任何更改?
有了json之后,使用object mapper很容易解析它:
let pagination = Mapper<Pagination<Post>>().map(JSONObject: json)
它可以进一步概括,我使用直接参考作为例子。您的Pagination
类也可以保存当前页面索引值。
我想你也错过了mapping(map:)
类中Post
函数的实现,它应该是这样的:
func mapping(map: Map) {
title <- map["title"]
}