我觉得自己已经开始了解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)
答案 0 :(得分:6)
这里有两个选项:
防止由于catchError
事件导致可观察物被处置
您可以使用retry
系列来完成此操作。
使用Subject
系列立即重新订阅。
根据您编写代码的方式,我假设不需要示例代码:D
但是,请注意,如果Error
收到Completed
或&isAuthSuccessful=true
个事件,它将不再发送任何其他事件。