摘要: concat 按顺序连接多个Observables。需要注意的是Observable.concat(a,b)等价于a.concatWith(b)。 startWith 在数据序列的开头增加一项数据。startWith的内部也是调用了concat。 merge 将多个Observable合并为一个。不 阅读全文
posted @ 2017-09-26 14:31 zwh1988 阅读(323) 评论(0) 推荐(0) 编辑