使用 Rx 编程 (Moya) 将 JSON 响应映射到对象
Mapping JSON response to objects using Rx programming (Moya)
我目前正在尝试学习 Rx 编程。我发现 Moya 很有趣,并且一直在尝试实现一个简单的网络请求,然后将其映射到我可以用来填充 tableView 的对象。
我一直在关注这个教程:http://www.thedroidsonroids.com/blog/ios/rxswift-examples-3-networking/
我相信我在使用 .debug
时得到了成功的响应并得到了以下输出:
2016-04-09 13:29:30.398: MyApi.swift:37 (findRepository) -> subscribed
2016-04-09 13:29:30.400: MyApi.swift:35 (findRepository) -> subscribed
2016-04-09 13:29:32.633: MyApi.swift:35 (findRepository) -> Event Next(Status Code: 20..., Data Length: 5747)
2016-04-09 13:29:32.633: MyApi.swift:35 (findRepository) -> Event Completed
这是我正在使用的代码:
let provider: RxMoyaProvider<MyApi>
let repositoryName: Observable<String>
func trackIssues() -> Observable<[Train]> {
return repositoryName
.observeOn(MainScheduler.instance)
.flatMapLatest { name -> Observable<[Train]?> in
print("Name: \(name)")
return self.findRepository(name)
}.replaceNilWith([])
}
internal func findRepository(name: String) -> Observable<[Train]?> {
print("help")
return self.provider
.request(MyApi.Trains(name, "c76a46ce2b3d8685982b/raw/10e86080c3b1beedd46db47f5bb188cc74ce5c78/sample.json"))
.debug()
.mapArrayOptional(Train.self)
.debug()
}
这是我要映射到的对象:
import Mapper
struct Train: Mappable {
let distance: String
let eta: String
init(map: Mapper) throws {
try distance = map.from("distance")
try eta = map.from("eta")
}
}
我查看了网络响应,想知道是否首先需要抽象 "trains" 数据。我已经尝试过映射到以下对象,但运气不好:
import Mapper
struct TrainsResponse: Mappable {
let trains: String
init(map: Mapper) throws {
try trains = map.from("trains")
}
}
请在此处查找示例 json 响应:http://pastebin.com/Wvx8d5Lg
所以我想知道是否有人可以帮我看看为什么我无法将响应转换为对象。谢谢。
=======
我已尝试执行 pod 更新,但仍然无法正常工作。这是我将它绑定到 tableView 的地方:
func setupRx() {
// First part of the puzzle, create our Provider
provider = RxMoyaProvider<MyApi>()
// Now we will setup our model
myApi = MyApi(provider: provider, repositoryName: userName)
// And bind issues to table view
// Here is where the magic happens, with only one binding
// we have filled up about 3 table view data source methods
myApi
.trackIssues()
.bindTo(tableView.rx_itemsWithCellFactory) { (tableView, row, item) in
let cell = tableView.dequeueReusableCellWithIdentifier("issueCell", forIndexPath: NSIndexPath(forRow: row, inSection: 0))
cell.textLabel?.text = "Hello"
print("Hello")
return cell
}
.addDisposableTo(disposeBag)
}
绑定到(我设置单元格的位置)中的代码永远不会被调用。另外,如果我在我的 Train 映射器 class 中放置一个断点,它也永远不会被调用。
它不起作用的原因是 JSON 从服务器 returns 字典中检索,而不是数组。您要解析的数组位于该字典的 "trains" 键下。本教程中使用的 Moya-ModelMapper 也有这种用法的方法。您只需要在 mapArrayOptional()
方法中传递第二个参数 keyPath:
。
所以你的问题的答案是替换:
.mapArrayOptional(Train.self)
与
.mapArrayOptional(Train.self, keyPath: "trains")
我目前正在尝试学习 Rx 编程。我发现 Moya 很有趣,并且一直在尝试实现一个简单的网络请求,然后将其映射到我可以用来填充 tableView 的对象。
我一直在关注这个教程:http://www.thedroidsonroids.com/blog/ios/rxswift-examples-3-networking/
我相信我在使用 .debug
时得到了成功的响应并得到了以下输出:
2016-04-09 13:29:30.398: MyApi.swift:37 (findRepository) -> subscribed
2016-04-09 13:29:30.400: MyApi.swift:35 (findRepository) -> subscribed
2016-04-09 13:29:32.633: MyApi.swift:35 (findRepository) -> Event Next(Status Code: 20..., Data Length: 5747)
2016-04-09 13:29:32.633: MyApi.swift:35 (findRepository) -> Event Completed
这是我正在使用的代码:
let provider: RxMoyaProvider<MyApi>
let repositoryName: Observable<String>
func trackIssues() -> Observable<[Train]> {
return repositoryName
.observeOn(MainScheduler.instance)
.flatMapLatest { name -> Observable<[Train]?> in
print("Name: \(name)")
return self.findRepository(name)
}.replaceNilWith([])
}
internal func findRepository(name: String) -> Observable<[Train]?> {
print("help")
return self.provider
.request(MyApi.Trains(name, "c76a46ce2b3d8685982b/raw/10e86080c3b1beedd46db47f5bb188cc74ce5c78/sample.json"))
.debug()
.mapArrayOptional(Train.self)
.debug()
}
这是我要映射到的对象:
import Mapper
struct Train: Mappable {
let distance: String
let eta: String
init(map: Mapper) throws {
try distance = map.from("distance")
try eta = map.from("eta")
}
}
我查看了网络响应,想知道是否首先需要抽象 "trains" 数据。我已经尝试过映射到以下对象,但运气不好:
import Mapper
struct TrainsResponse: Mappable {
let trains: String
init(map: Mapper) throws {
try trains = map.from("trains")
}
}
请在此处查找示例 json 响应:http://pastebin.com/Wvx8d5Lg
所以我想知道是否有人可以帮我看看为什么我无法将响应转换为对象。谢谢。
=======
我已尝试执行 pod 更新,但仍然无法正常工作。这是我将它绑定到 tableView 的地方:
func setupRx() {
// First part of the puzzle, create our Provider
provider = RxMoyaProvider<MyApi>()
// Now we will setup our model
myApi = MyApi(provider: provider, repositoryName: userName)
// And bind issues to table view
// Here is where the magic happens, with only one binding
// we have filled up about 3 table view data source methods
myApi
.trackIssues()
.bindTo(tableView.rx_itemsWithCellFactory) { (tableView, row, item) in
let cell = tableView.dequeueReusableCellWithIdentifier("issueCell", forIndexPath: NSIndexPath(forRow: row, inSection: 0))
cell.textLabel?.text = "Hello"
print("Hello")
return cell
}
.addDisposableTo(disposeBag)
}
绑定到(我设置单元格的位置)中的代码永远不会被调用。另外,如果我在我的 Train 映射器 class 中放置一个断点,它也永远不会被调用。
它不起作用的原因是 JSON 从服务器 returns 字典中检索,而不是数组。您要解析的数组位于该字典的 "trains" 键下。本教程中使用的 Moya-ModelMapper 也有这种用法的方法。您只需要在 mapArrayOptional()
方法中传递第二个参数 keyPath:
。
所以你的问题的答案是替换:
.mapArrayOptional(Train.self)
与
.mapArrayOptional(Train.self, keyPath: "trains")