好的,让我们先解释一下我的目标。我正在尝试构建一个结构来从 Moya 获取项目并使用领域对象正确映射我的项目,以便将来保存它们。为了获得相关的反应性,所有这些都应该使用 rxswift 完成。
这是我的 2 节课:
import Foundation
import ObjectMapper
import RealmSwift
final class GroupContainer: Mappable {
private(set) var items = List<Group>()
required convenience init?(map: Map) {
self.init()
}
func mapping(map: Map) {
items <- (map["items"], transformation: RealmListTransform<Group>())
}
}
import Foundation
import RealmSwift
import ObjectMapper
final class Group: Object, Mappable {
private(set) dynamic var tag: String = ""
private(set) dynamic var name: String = ""
private(set) dynamic var groupLevel: Int = 0
private(set) dynamic var groupPoints: Int = 0
private(set) dynamic var members: Int = 0
required convenience init?(map: Map) {
self.init()
}
func mapping(map: Map) {
tag <- map["tag"]
name <- map["name"]
clanLevel <- map["groupLevel"]
clanPoints <- map["groupPoints"]
members <- map["members"]
}
}
这是一个用于获取和解析我的数据的示例结构。这是 RxMoya 提供的示例。但是为了使用 ObjectMapper 我不能使用mapObjectOptionnal
方法。mapObjectOptionnal
我尝试将模型切换到ModelMapper ,但找不到将数组转换为 List 的方法要求。
import Moya
import Moya_ObjectMapper
import RxOptional
import RxSwift
struct TempFetcher {
let provider = RxMoyaProvider<APIService>()
let groupName = Observable<String>
func trackGroup() -> Observable<[Group]> {
return self.groupName.observeOn(MainScheduler.instance)
.flatMapLatest { search -> Observable<GroupContainer> in
return self.findGroup(name: search)
}
.flatMapLatest { container -> Observable<[Group]> in
return Observable<[Group]>.just(container.items)
}
}
private func findGroup(name: String) -> Observable<GroupContainer?> {
return self.provider
.request(APIService.Group(fullName: name))
.debug()
.mapObjectOptional(type: Repository.self)
}
}
任何对我研究进展的帮助将不胜感激!!谢谢。