书栈网 · BookStack 本次搜索耗时 0.018 秒,为您找到 578 个相关结果.
  • merge

    merge signature: merge(input: Observable): Observable Turn multiple observables into a single observable. Examples Example 1: merging multiple observables, static method Exampl...
  • ignoreElements

    ignoreElements 签名: ignoreElements(): Observable 忽略所有通知,除了 complete 和 error 。 示例 示例 1: 忽略源 observable 的所有数据项 示例 2: 只显示错误 其他资源 ignoreElements 签名: ignoreElements(): Obser...
  • startWith

    startWith 签名: startWith(an: Values): Observable 发出给定的第一个值 示例 示例 1: 对数字序列使用 startWith 示例 2: startWith 用作 scan 的初始值 示例 3: 使用多个值进行 startWith 相关食谱 其他资源 startWith 签名: sta...
  • Introduction

    Rxjs 5 ultimate Rxjs 5 ultimate This book is meant to be starter as well as intermediate book for anyone starting out with Rxjs. Tweet me @chris_noring for questions, cheers,...
  • mergeMap

    mergeMap signature: mergeMap(project: function: Observable, resultSelector: function: any, concurrent: number): Observable Map to observable, emit values. Why use mergeMap ? Ex...
  • concatAll

    concatAll 签名: concatAll(): Observable 收集 observables,当前一个完成时订阅下一个。 示例 示例 1: 使用 observable 来进行 concatAll 示例 2: 使用 promise 来进行 concatAll 示例 3: 当内部 observables 完成时进行延迟 相关食谱 其...
  • throttleTime

    throttleTime 签名: throttleTime(duration: number, scheduler: Scheduler): Observable 当指定的持续时间经过后发出最新值。 示例 示例 1: 每5秒接收最新值 示例 2: 对合并的 observable 节流 其他资源 throttleTime 签名: th...
  • create

    create signature: create(subscribe: function) Create an observable with given subscription function. Examples Example 1: Observable that emits multiple values Example 2: Observ...
  • 前言

    学习 RxJS 前言 内容 操作符 分类 概念 食谱 介绍性资源 阅读 视频 练习 工具 翻译 参考文献注 学习 RxJS RxJS 的清晰示例、解释及资源。 作者 @btroncone 前言 RxJS 是当前 web 开发中最热门的库之一。它提供强大的功能性方法来处理事件,并将集成点集中到越来越多的框架、库和实...
  • race

    race 签名: race(): Observable 使用首先发出值的 observable 。 示例 示例 1: 使用 4个 observables 进行 race 示例 2: 使用 error 进行 race 其他资源 race 签名: race(): Observable 使用首先发出值的 observable 。 ...