错误后重新订阅Observable

时间:2016-04-25 16:18:04

标签: ios swift rx-swift reactivex

我觉得自己已经开始了解RxSwift - 但是我只是遇到了障碍。 这是我为演示而构建的对象(我在发布到SO之前对其进行了简化)。我的问题是,当上传过程中出现网络错误时,所有订阅都会被处理掉。因此,当我再次点击rightBarButtonItem时,没有任何反应。

正确/更好的建模方法是什么?我不确定我是否正确掌握了PublishSubject的用法!

let activityIndicator = ActivityIndicator()
let disposeBag = DisposeBag()

let rx_upload = PublishSubject<Void>()
let rx_progress = PublishSubject<RxProgress>()
let rx_uploadComplete = PublishSubject<Look>()

override init() {
    super.init()

    activityIndicator
        .drive(UIApplication.sharedApplication().rx_networkActivityIndicatorVisible)
        .addDisposableTo(disposeBag)

    let upload = rx_upload
        .debug("Upload")
        .flatMapLatest { [unowned self] -> Observable<(JSON?, RxProgress)> in
            return self.upload()
        }
        .share()

    upload
        .map { $0.1 }
        .debug("Upload Progress")
        .bindTo(rx_progress)
        .addDisposableTo(disposeBag)

    upload
        .filter { $0.0 != nil }
        .map { Post(jsonData: $0.0!) }
        .filterNil()
        .debug("Upload Complete")
        .bindTo(rx_uploadComplete)
        .addDisposableTo(disposeBag)

}

func upload() -> Observable<(JSON?, RxProgress)> {
    // ...
}

并在ViewController.swift ...

self.navigationItem.rightBarButtonItem?.rx_tap
.bindTo(postUploader.rx_upload)
.addDisposableTo(disposeBag)

1 个答案:

答案 0 :(得分:6)

这里有两个选项:

  1. 防止由于catchError事件导致可观察物被处置 您可以使用retry系列来完成此操作。

  2. 使用Subject系列立即重新订阅。

  3. 根据您编写代码的方式,我假设不需要示例代码:D

    但是,请注意,如果Error收到Completed&isAuthSuccessful=true个事件,它将不再发送任何其他事件。