-
Notifications
You must be signed in to change notification settings - Fork 113
Open
Description
原描述:
pairwise
函数签名: pairwise(): Observable
将前一个值和当前值作为数组发出
示例:
// RxJS v6+
import { pairwise, take } from 'rxjs/operators';
import { interval } from 'rxjs';
// 返回: [0,1], [1,2], [2,3], [3,4], [4,5]
interval(1000)
.pipe(
pairwise(),
take(5)
)
.subscribe(console.log);
输出为 [0,1], [1,2], [2,3], [3,4], [4,5]
去掉 pairwise() 方法
输出为 0,1,2,3,4
并非为描述中的: 将前一个值和当前值作为数组发出
Metadata
Metadata
Assignees
Labels
No labels