代码为:
Observable.prototype.debug = function(message: string) {
return this.do(
(next) => {
if (!environment.production) {
console.log(message, next);
}
},
(err) => {
if (!environment.production) {
console.error('ERROR>>>', message, err);
}
},
() => {
if (!environment.production) {
console.log('Completed - ');
}
}
);
但是这个时候报了 this.do is no a function ; this.do 一直为undefined
全网首个介绍官方 Material 组件库用法与 Redux 在 Angular 中的应用
了解课程