codecamp

RxJS 弃用

下面列出的 API 将在下一个主要版本中删除!

Scheduler Scheduler 是 RxJS 的内部实现细节,并且 不应直接使用。 而是创建自己的类并实施 SchedulerLike
NotificationKind 不推荐使用 NotificationKind,因为 const 枚举与隔离模块不兼容。 请改用字符串文字。
empty 不推荐使用 EMPTY 常量,或者 scheduled(例如scheduled([],scheduler)
never 不赞成使用 NEVER常量。
ObservableLike 用 InteropObservable
combineLatest 不赞成使用static combineLatest
concat 不赞成使用static concat
merge 不赞成使用static merge
partition 使用partition静态创建函数代替
race 不赞成使用static race
zip 不赞成使用static zip
RxJS 管道运算符
RxJS 外部资源
温馨提示
下载编程狮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; }