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,想知道 subscribeNext 和 bindNext 有什么区别?
感谢您的输入。
bindNext( :) 包括错误处理。它调用 subscribe( :onError:) 并抛出一个致命错误 onError(在 DEBUG 中)。subscribeNext(_:) 只处理 onNext 而不会抛出错误。
感谢来自http://as.ync.io/的 Scott Gardner