📜  RxJS-使用订阅

📅  最后修改于: 2020-10-20 05:36:04             🧑  作者: Mango


创建可观察对象后,要执行可观察对象,我们需要订阅它。

count()运算符

这里是一个简单的示例,说明如何订阅可观察对象。

例子1

import { of } from 'rxjs';
import { count } from 'rxjs/operators';

let all_nums = of(1, 7, 5, 10, 10, 20);
let final_val = all_nums.pipe(count());
final_val.subscribe(x => console.log("The count is "+x));

输出

The count is 6

订阅有一种称为unsubscribe()的方法。调用unsubscribe()方法将删除该可观察对象使用的所有资源,即该可观察对象将被取消。这是一个使用unsubscribe()方法的工作示例。

例子2

import { of } from 'rxjs';
import { count } from 'rxjs/operators';

let all_nums = of(1, 7, 5, 10, 10, 20);
let final_val = all_nums.pipe(count());
let test = final_val.subscribe(x => console.log("The count is "+x));
test.unsubscribe();

订阅存储在变量test中。我们已经使用了test.unsubscribe()。

输出

The count is 6