zl程序教程

您现在的位置是:首页 >  其它

当前栏目

[RxJS] Avoid mulit post requests by using shareReplay()

by Using post requests Rxjs avoid
2023-09-14 09:00:51 时间

With the shareReplay operator in place, we would no longer fall into the situation where we have accidental multiple HTTP requests.

And this covers the main use cases for doing the most typical read and modification operations, that we would implement while doing a custom REST API.

 

import 'rxjs/add/operator/shareReplay';

  signUp(email: string, password: string) {
    return this.http.post<User>('/api/signup', {
      email,
      password
    }).shareReplay() // make sure that request was cached and it return observable
      .do((user) => this.subject.next(user));
  }

 

shareReplay was added to RxJS V5.4

 

More informaiton about shareReplay.