博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[RxJS] Add debug method to Observable in TypeScript
阅读量:6431 次
发布时间:2019-06-23

本文共 520 字,大约阅读时间需要 1 分钟。

Observable.prototype.debug = function(message: any) {   return this.do(     (next) => {       if(!environment.production) {         console.log(message, next);       }     },     (err) => {       if(!environment.production) {         console.error(message, err)       }     },     () => {       if(!environment.production) {         console.info("Observable completed", message)       }     }   );};declare module 'rxjs/observable' {  interface Observable
{ debug: (...any) => Observable
}}

 

转载地址:http://ckxga.baihongyu.com/

你可能感兴趣的文章
螺旋阵(递归和非递归)
查看>>
我的爷爷(知识渊博的下乡知青)
查看>>
jQuery动画连续触发、滞后反复执行解决办法
查看>>
uva 10405 Longest Common Subsequence
查看>>
HttpFileCollection类
查看>>
Eclipse使用常见设置
查看>>
控制台下的字符图像界面
查看>>
c++ 数组形参
查看>>
Memcache的安全
查看>>
KVM/Xen and libvirt: currentMemory, memory and ballooning
查看>>
metasploit 笔记
查看>>
hdu 2845(最大不连续子序列)
查看>>
J2me的异常处理和多线程
查看>>
选择、生成-EA与数据库的交互-by小雨
查看>>
客户网页WIZnet无线解决方案 之 太阳能逆变器
查看>>
CCRepeatForever和CCDelayTime
查看>>
android jni aotf 错误
查看>>
Azkaban的功能特点(二)
查看>>
[RxJS] Add debug method to Observable in TypeScript
查看>>
1、金融之关于BIAS
查看>>