codecamp

RxJS Subscribable

可观察的界面

interface Subscribable<T> {  subscribe(observer?: PartialObserver<T>): Unsubscribable }

类的实现

  • Observable

  • ConnectableObservable

  • GroupedObservable

  • Subject

  • BehaviorSubject
  • ReplaySubject
  • AsyncSubject

方法

订阅() 4重载...subscribe(next: null, error: null, complete: () => void): Unsubscribable

参量 类型
下一个 类型:null
错误 类型:null
完成 类型:() => void

returnsUnsubscribable``subscribe(next: null, error: (error: any) => void, complete?: () => void): Unsubscribable

参量 类型
下一个 类型:null
错误 类型:(error: any) => void
完成 可选的。默认值为undefined类型:() => void

returnsUnsubscribable``subscribe(next: (value: T) => void, error: null, complete: () => void): Unsubscribable

参量 类型
下一个 类型:(value: T) => void
错误 类型:null
完成 类型:() => void

returnsUnsubscribable``subscribe(next?: (value: T) => void, error?: (error: any) => void, complete?: () => void): Unsubscribable

参量 类型
下一个 可选的。默认值为undefined类型:(value: T) => void
错误 可选的。默认值为undefined。类型:(error: any) => void
完成 可选的。默认值为undefined。类型:() => void

returnsUnsubscribable

RxJS Subject
RxJS SubscribableOrPromise
温馨提示
下载编程狮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; }