zoukankan      html  css  js  c++  java
  • [RxJS] Updating Data with Scan

    You often need to update the data flowing through the stream with custom logic based on what you need to output. This lesson covers how to use scan for collecting and updating the outputs as your stream progresses.

    EVerytime we click start button now it will start from 0:
    const Observable = Rx.Observable;
    
    const startButton = document.querySelector('#start');
    const stopButton = document.querySelector('#stop');
    
    const start$ = Observable.fromEvent(startButton, 'click');
    const interval$ = Observable.interval(1000);
    const stop$ = Observable.fromEvent(stopButton, 'click');
    
    const intervalThatStop$ = interval$.takeUntil(stop$);
    
    
    start$.switchMapTo(intervalThatStop$)
      .subscribe( (x) => {
      console.log(x);
    })

    What we want is it should remeber the current state, so that, next time when we start again, it can use our current state:

    const Observable = Rx.Observable;
    
    const startButton = document.querySelector('#start');
    const stopButton = document.querySelector('#stop');
    
    const start$ = Observable.fromEvent(startButton, 'click');
    const interval$ = Observable.interval(1000);
    const stop$ = Observable.fromEvent(stopButton, 'click');
    
    const intervalThatStops$ = interval$
        .takeUntil(stop$);
    
    start$
        .switchMapTo(intervalThatStops$)
        .scan( (acc) => {
            return Object.assign(acc, {count: acc.count + 1})
        }, {
           count: 0
        })
        .subscribe((x)=> console.log(x));
  • 相关阅读:
    Linux CentOS 6.5 ifconfig查询不到ip简单解决方法
    java 使用网建SMS发送短信验证码
    SpringBoot 发送简单邮件
    IntelliJ idea SpringBoot打war包
    Firefox火狐浏览器打开新标签页一直闪烁
    Open Live Writer
    javascript函数
    class类的初始化
    计算机网络学习总结1
    XML语言基础2 DTD
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5258786.html
Copyright © 2011-2022 走看看