标签: angular
我正在尝试从服务访问.catch,以将其用作 Observables 的方法,并在组件中访问它,但是显示错误。 有人可以告诉我该怎么做吗?
.catch
答案 0 :(得分:3)
您应将catchError与pipe()一起使用
catchError
pipe()
this.http.delete().pipe(catchError(e => of(e)));