Property 'error' does not exist on type '“” | Promise'

前端 未结 3 1419
长发绾君心
长发绾君心 2021-02-13 18:03

I\'m trying to add some error handling to a service, following the Angular guide.

Relevant snippet:

private handleError (error: Response | any) {
  // I         


        
3条回答
  •  清歌不尽
    2021-02-13 18:36

    Same thing just happened to me. This happens when you fail to import the Response object.

    import { Response } from '@angular/http';
    

提交回复
热议问题