6

我正在使用 RxSwift,想知道 subscribeNext 和 bindNext 有什么区别?

感谢您的输入。

4

1 回答 1

13

bindNext( :) 包括错误处理。它调用 subscribe( :onError:) 并抛出一个致命错误 onError(在 DEBUG 中)。subscribeNext(_:) 只处理 onNext 而不会抛出错误。

感谢来自http://as.ync.io/的 Scott Gardner

于 2016-04-18T17:05:30.173 回答