这两个操作符之间有什么区别?
http://reactivex.io不要提.subscribeNext.
解决方法
在早于3的RxSwift版本中,subscribeNext(_:Value – >())是subscribe的专用版本(_:Event< Value> – >()).
订阅(_ :)将针对每个事件情况触发,即.next(Value),. error(Error)和.completed.
subscribeNext仅触发.next(Value),首先解压缩Value.
从RxSwift版本3开始,现在是subscribeNext
func subscribe( onNext: ((Value) -> ())? = nil,onError: ((Error) -> ())? = nil,onCompleted: (() -> ())? = nil,onDisposed: () -> () = nil )