返回介绍

skip

发布于 2021-03-12 13:47:48 字数 4133 浏览 1072 评论 0 收藏 0

skip

函数签名: skip(the: Number): Observable

跳过N个(由参数提供)发出值。

为什么使用 skip

skip 允许你忽略源 observable 开头的n个值。通常,当你总是想忽略 observable 的某些值时,应该使用 skip 。或许你不需要这些开头的值,或许你订阅了 ReplayBehaviorSubject 从而不需要初始值。如果你不关心开头的一组值,那就使用 skip 吧。

你可以使用 filter 加索引来模拟 skip 。例如 .filter((val, index) => index > 1)

示例

示例 1: 在发送前跳过N个值

( StackBlitz | jsBin | jsFiddle )

// RxJS v6+
import { interval } from 'rxjs';
import { skip } from 'rxjs/operators';

// 每1秒发出值
const source = interval(1000);
// 跳过前5个发出值
const example = source.pipe(skip(5));
// 输出: 5...6...7...8........
const subscribe = example.subscribe(val => console.log(val));

示例 2: filter 特定用法的简写形式

( StackBlitz | jsBin | jsFiddle )

// RxJS v6+
import { from } from 'rxjs';
import { skip, filter } from 'rxjs/operators';

const numArrayObs = from([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);

// 3,4,5...
const skipObs = numArrayObs.pipe(skip(2)).subscribe(console.log);

// 3,4,5...
const filterObs = numArrayObs
  .pipe(filter((val, index) => index > 1))
  .subscribe(console.log);

// 同样的输出!

其他资源


源码: https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/skip.ts

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文