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

    mapTo signature: mapTo(value: any): Observable Map emissions to constant value. Examples Example 1: Map every emission to string Example 2: Mapping clicks to string Related ...
  • take

    take signature: take(count: number): Observable Emit provided number of values before completing. Why use take Examples Example 1: Take 1 value from source Example 2: Take th...
  • debounce

    debounce 签名: debounce(durationSelector: function): Observable 根据一个选择器函数,舍弃掉在两次输出之间小于指定时间的发出值。 示例 示例 1: 基于 timer 的 debounce 示例 2: 基于 interval 的 dobounce 其他资源 debounce 签...
  • zip

    zip 签名: zip(observables: *): Observable 描述 TL;DR: 在所有 observables 发出后,将它们的值作为数组发出 示例 示例 1: 以交替的时间间隔对多个 observables 进行 zip 示例 2: 当一个 observable 完成时进行 zip 其他资源 zip 签名: ...
  • concatMap

    concatMap signature: concatMap(project: function, resultSelector: function): Observable Map values to inner observable, subscribe and emit in order. Examples Example 1: Demonstr...
  • delay

    delay signature: delay(delay: number | Date, scheduler: Scheduler): Observable Delay emitted values by given time. Examples Example 1: Delay for increasing durations Related ...
  • Interceptors

    Interceptors Basics Execution context Call handler Aspect interception Binding interceptors Response mapping Exception mapping Stream overriding More operators Interce...
  • retry

    retry signature: retry(number: number): Observable Retry an observable sequence a specific number of times should an error occur. Examples Example 1: Retry 2 times on error A...
  • Troubleshooting

    Troubleshooting RxJS operators are missing! e.g. TypeError: action$.ofType(…).switchMap is not a function Add all operators Add only the operators you use TypeError: object is...
  • multicast

    1218 2018-04-07 《Learn RxJS(英文版)》
    multicast signature: multicast(selector: Function): Observable Share source utilizing the provided Subject. Examples Example 1: multicast with standard Subject Example 2: multi...