1

私は現在 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")
    }
}

私はネットワークの応答を見て、最初に「列車」データを抽象化する必要があるかどうか疑問に思っています。運が悪かったので、次のオブジェクトにマッピングしてこれを試しました:

import Mapper

struct TrainsResponse: Mappable {

    let trains: String

    init(map: Mapper) throws {
        try trains = map.from("trains")
    }
}

json 応答の例は、http: //pastebin.com/Wvx8d5Lgで確認してください。

そのため、応答をオブジェクトに変換できない理由を誰かが理解するのを手伝ってくれるかどうか疑問に思っていました。ありがとう。

=======

ポッドの更新を試みましたが、まだ機能していません。これが私が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)
}

bind to (セルを設定した場所) 内のコードは呼び出されません。また、Train マッパー クラス内にブレーク ポイントを配置すると、これも呼び出されません。

4

1 に答える 1

2

機能しない理由は、サーバーから取得した JSON が配列ではなく辞書を返すためです。解析したい配列は、その辞書の「trains」キーの下にあります。チュートリアルで使用するMoya-ModelMapperにも、この使用法のためのメソッドがあります。keyPath:メソッドで2 番目の引数を渡すだけですmapArrayOptional()

したがって、あなたの質問に対する答えは replace:
.mapArrayOptional(Train.self)
with
.mapArrayOptional(Train.self, keyPath: "trains")

于 2016-04-09T15:36:58.447 に答える