RxJS - 过滤器操作符 ignoreElements
此操作符将忽略源可观察对象的所有值,并只执行对完成或错误回调函数的调用。
语法
ignoreElements()
返回值
它返回一个将根据源可观察对象进行完成或错误调用的可观察对象。
示例
import { of } from 'rxjs'; import { ignoreElements } from 'rxjs/operators'; let all_nums = of(1, 6, 5, 10, 9, 20, 40); let final_val = all_nums.pipe(ignoreElements()); final_val.subscribe( x => console.log("The last value is = "+x), e => console.log('error:', e), () => console.log('The task is complete') );
ignoreElements() 操作符将直接执行完成方法(如果成功)或错误(如果失败),并忽略其他所有内容。
输出
广告