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

    scan 签名: scan(accumulator: function, seed: any): Observable 随着时间的推移进行归并。 示例 示例 1: 随着时间的推移计算总数 示例 2: 对对象进行累加 示例 3: 随机发出累加数组中的值。 相关食谱 其他资源 scan 签名: scan(accumulator: f...
  • forkJoin

    forkJoin 签名: forkJoin(...args, selector : function): Observable 当所有 observables 完成时,发出每个 observable 的最新值。 为什么使用 forkJoin ? 示例 示例 1: Observables 再不同的时间间隔后完成 示例 2: 发起任意多个请求 示例 ...
  • pluck

    pluck 签名: pluck(properties: ...args): Observable 选择属性来发出。 示例 示例 1: 提取对象属性 示例 2: 提取嵌套的属性 其他资源 pluck 签名: pluck(properties: ...args): Observable 选择属性来发出。 示例 示例...
  • partition

    partition signature: partition(predicate: function: boolean, thisArg: any): [Observable, Observable] Split one observable into two based on provided predicate. Examples Example ...
  • concat

    concat 签名: concat(observables: ...*): Observable 按照顺序,前一个 observable 完成了再订阅下一个 observable 并发出值。 示例 示例 1: concat 2个基础的 observables 示例 2: concat 作为静态方法 示例 3: 使用延迟的 souce observa...
  • throttle

    throttle signature: throttle(durationSelector: function(value): Observable | Promise): Observable Emit value only when duration, determined by provided function, has passed. Exa...
  • pluck

    pluck signature: pluck(properties: ...args): Observable Select properties to emit. Examples Example 1: Pluck object property Example 2: Pluck nested properties Additional Re...
  • defaultIfEmpty

    defaultIfEmpty signature: defaultIfEmpty(defaultValue: any): Observable Emit given value if nothing is emitted before completion. Examples Example 1: Default for empty value Ex...
  • mergeAll

    mergeAll signature: mergeAll(concurrent: number): Observable Collect and subscribe to all observables. Examples Example 1: mergeAll with promises Example 2: mergeAll with concu...
  • 拦截器

    拦截器 基础 进阶 响应映射 异常映射 stream 重写 全局拦截器 拦截器 拦截器是@Interceptor () 装饰器的类。拦截器应该实现 NestInterceptor 接口。 拦截器具有一系列有用的功能,这些功能受面向切面编程(AOP)技术的启发。它们可以: 在方法执行之前/之后绑定额外的逻辑 转换从函数返回的结...