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

    sample signature: sample(sampler: Observable): Observable Sample from source when provided observable emits. Examples Example 1: Sample source every 2 seconds Example 2: Sample...
  • forkJoin

    forkJoin signature: forkJoin(...args, selector : function): Observable When all observables complete, emit the last emitted value from each. Why use forkJoin ? Examples Example...
  • scan

    scan signature: scan(accumulator: function, seed: any): Observable Reduce over time. Examples Example 1: Sum over time Example 2: Accumulating an object Example 3: Emitting ra...
  • retryWhen

    retryWhen 签名: retryWhen(receives: (errors: Observable) => Observable, the: scheduler): Observable 当发生错误时,基于自定义的标准来重试 observable 序列。 示例 示例 1: 在指定的时间间隔后触发重试 示例 2: 时间间隔增加的自定义重试 ...
  • last

    last 签名: last(predicate: function): Observable 根据提供的表达式,在源 observable 完成时发出它的最后一个值。 示例 示例 1: 序列中的最后一个值 示例 2: 最后一个通过 predicate 函数的值 示例 3: 使用结果选择器的 last 示例 4: 使用默认值的 last 其他...
  • debounce

    debounce signature: debounce(durationSelector: function): Observable Discard emitted values that take less than the specified time, based on selector function, between output. E...
  • 前言

    RxJS 5 基本原理 译者的补充 RxJS 5 基本原理 本书是 RxJS 的初中级书,适用于任何想要入门 RxJS 的开发者。 可以在推特上@我提问,评论或以兹鼓励,我的推特账号是 chris_noring,我在那等着你们。 阅读本书不必遵循特定的顺序,但如果你是 RxJS 新手的话建议先看一些基础篇章,比如 Observable 、Obs...
  • Interceptors

    Interceptors Basics Execution context Call handler Hoodies, T-shirts, and accessories! Aspect interception Binding interceptors Response mapping Exception mapping Stream ov...
  • takeUntil

    takeUntil signature: takeUntil(notifier: Observable): Observable Emit values until provided observable emits. Examples Example 1: Take values until timer emits Example 2: Take ...
  • filter

    filter 签名: filter(select: Function, thisArg: any): Observable 发出符合给定条件的值。 示例 示例 1: 过滤出偶数 示例 2: 基于属性过滤对象 示例 3: 过滤出大于给定值的数字 相关食谱 其他资源 filter 签名: filter(select: Functio...