codecamp

RxJS NEVER

一个不向观察者发射任何物品并且永远不会完成的Observable。

const NEVER: any;

描述

一个简单的 Observable,它既不发出值,也不发出错误,也不发出完成通知。它可以用于测试目的或与其他 Observables 组成。请注意,通过从不发出完整的通知,此 Observable 可以防止自动处置订阅。订阅需要手动处理。

发射数字 7,然后再不发射其他任何东西(甚至不完整)

import { NEVER } from 'rxjs';
import { startWith } from 'rxjs/operators';


function info() {
  console.log('Will not be called');
}
const result = NEVER.pipe(startWith(7));
result.subscribe(x => console.log(x), info, info);

也可以看看

RxJS never(已弃用)
RxJS NextObserver
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

RxJS operators

RxJS fetch

RxJS testing

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }