46

升级到 Angular 6.0 和 Rxjs 到 6.0 后,我收到以下编译错误:

Property 'do' does not exist on type 'Observable'.

这是代码:

import { Observable, of } from 'rxjs';
import 'rxjs/add/operator/do';
import 'rxjs/add/observable/throw';
import 'rxjs/add/operator/catch';
import { IProduct } from './product';

@Injectable()
export class ProductService { 
    constructor(
        private product: IProduct)
    {         
    }

    getProduct = () => { 
        return product.products
            // error on next line
            .do(data => console.log('All:' + JSON.stringify(data)))
            .catch(this.handleError);
    }

    private handleError(err: HttpErrorResponse) { 
        console.log(err.message);
        return Observable.throw(err.message);        
    }
}

任何想法?

4

5 回答 5

100

问题不在于角度,而在于 rxjs。rxjs 引入了 rxjs 版本 6 的重大更改。

要让您的代码在不更改任何代码的情况下再次运行,请安装以下软件包:

npm install rxjs-compat@6 --save

然后,您应该能够编译您的项目。rxjs-compat旨在作为临时解决方案,因此您需要更新代码库以使用新版本。


新的导入路径

您需要更新的内容:

  1. 更新导入语句

    import { Observable } from "rxjs/Observable";

    import { Observable } from "rxjs";

  2. 更新您的运营商进口自

    import 'rxjs/add/operator/do'

    import { do } from "rxjs/operators";


重命名运算符

由于与 JavaScript 保留字的名称冲突,一些运算符也已重命名。他们是

  1. do=>tap

  2. catch=>catchError

  3. switch=>switchAll

  4. finally=>finalize


没有运算符链接

你也不能再链接你的运营商了,你需要使用pipe运营商,例如

// an operator chain
source
  .map(x => x + x)
  .mergeMap(n => of(n + 1, n + 2)
    .filter(x => x % 1 == 0)
    .scan((acc, x) => acc + x, 0)
  )
  .catch(err => of('error found'))
  .subscribe(printResult);
// must be updated to a pipe flow
source.pipe(
  map(x => x + x),
  mergeMap(n => of(n + 1, n + 2).pipe(
    filter(x => x % 1 == 0),
    scan((acc, x) => acc + x, 0),
  )),
  catchError(err => of('error found')),
).subscribe(printResult);
于 2018-05-08T08:05:35.767 回答
17

我很欣赏 Tjaart van der Walt 关于如何解决 Angular/rxjs7++ 中引入的“重大变化”的回应。但是我在尝试将他的响应应用于我的 Angular 拦截器时仍然遇到了几个问题:

这是更新的代码(未能编译的部分标记为“OLD”)

import {Injectable} from '@angular/core';
import {HttpEvent, HttpInterceptor, HttpResponse} from '@angular/common/http';
import {HttpHandler, HttpRequest, HttpErrorResponse} from '@angular/common/http';

/*
  OLD:
  import {Observable} from 'rxjs/Observable';
  import 'rxjs/add/operator/do';
 */
import { Observable } from 'rxjs';
import { of } from 'rxjs';
import { tap, catchError } from 'rxjs/operators';

import { AuthService } from './auth.service';

@Injectable()
export class StockAppInterceptor implements HttpInterceptor {

  constructor(private authService: AuthService) {}

  intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
    if (this.authService.authToken) {
      const authReq = req.clone({
        headers: req.headers.set(
          'Authorization',
          this.authService.authToken
        )
      });
      console.log('Making an authorized request');
      req = authReq;
    }
    /*
     * OLD:
     * return next.handle(req)
     *   .do(event => this.handleResponse(req, event),
     *      error => this.handleError(req, error));
     */
    return next.handle(req).pipe(
      tap(
        event => this.handleResponse(req, event),
        error => this.handleError(req, error)
      )
    );
  }


  handleResponse(req: HttpRequest<any>, event) {
    console.log('Handling response for ', req.url, event);
    if (event instanceof HttpResponse) {
      console.log('Request for ', req.url,
          ' Response Status ', event.status,
          ' With body ', event.body);
    }
  }

  handleError(req: HttpRequest<any>, event) {
    console.error('Request for ', req.url,
          ' Response Status ', event.status,
          ' With error ', event.error);
  }
}

所需的更改包括更改import路径和替换pipe(),tap()of().

此链接也是 RxJS6 更改的一个很好的资源:

https://www.academind.com/learn/javascript/rxjs-6-what-c​​hanged/

于 2018-12-26T21:10:11.243 回答
14

Rxjs 6 引入了一些重大更改,并且“do”运算符已被“tap”运算符(来自' rxjs/internal/operators')取代。

您可以使用 new 运算符重构您的代码,或者通过添加 rxjs-compat 库以实现向后兼容性 ( npm install --save rxjs-compat) 仍然使用旧的 'do' 语法。

请注意,在 RxJs 6 之前,您必须导入“do”运算符:

import 'rxjs/add/operator/do';

更多详细信息:Angular HTTP GET with TypeScript error http.get(...).map is not a function in [null]

于 2018-05-07T07:31:32.673 回答
5

在 rxjs 6 中,“do”运算符已替换为“tap”运算符,为什么会出现此错误“类型 'Observable<IProduct[]>' 上不存在属性 'do'”

要修复此错误,您有两个选择

解决方案 1:修补您的代码......它可以与 do 运算符一起正常工作

npm install rxjs-compat@6 --save

解决方案 2:将next.handle代码替换为以下代码

 return next.handle(req).pipe(
      tap(
        event => this.handleResponse(req, event),
        error => this.handleError(req, error)
      )
    );
于 2020-08-17T17:11:58.463 回答
1

只需在您的打字稿文件中使用:

import 'rxjs/add/operator/do';

就如此容易。谢谢。

于 2020-01-07T16:59:29.757 回答