文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
share
share
函数签名: share(): Observable
在多个订阅者间共享源 observable 。
share 就像是使用了 Subject 和 refCount 的 multicast!
示例
示例 1: 多个订阅者共享源 observable
( StackBlitz | jsBin | jsFiddle )
// RxJS v6+
import { timer } from 'rxjs';
import { tap, mapTo, share } from 'rxjs/operators';
// 1秒后发出值
const source = timer(1000);
// 输出副作用,然后发出结果
const example = source.pipe(
tap(() => console.log('***SIDE EFFECT***')),
mapTo('***RESULT***')
);
/*
***不共享的话,副作用会执行两次***
输出:
"***SIDE EFFECT***"
"***RESULT***"
"***SIDE EFFECT***"
"***RESULT***"
*/
const subscribe = example.subscribe(val => console.log(val));
const subscribeTwo = example.subscribe(val => console.log(val));
// 在多个订阅者间共享 observable
const sharedExample = example.pipe(share());
/*
***共享的话,副作用只执行一次***
输出:
"***SIDE EFFECT***"
"***RESULT***"
"***RESULT***"
*/
const subscribeThree = sharedExample.subscribe(val => console.log(val));
const subscribeFour = sharedExample.subscribe(val => console.log(val));
相关食谱
其他资源
其他资源
- share :newspaper: - 官方文档
- 使用 share 共享流 :video_camera: :dollar: - John Linquist
源码: https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/share.ts
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论