Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果在 RxSwift 中遇到错误,我需要发出一系列项目。在 JAVA 中,可以使用“onErrorResumeNext”操作符来完成。但我在 Swift 中找不到相同的运算符或其替代品。
您可以使用
ObservableType.catchError(handler: (ErrorType) throws -> Observable<E>) -> Observable<E>
文档可以在这里找到。