RxJS - 创建运算符 throwError



此运算符将创建一个可观察对象,以通知错误。

语法

throwError(error: any): Observable

参数

错误 − 运算符获取的参数是您需要通知的错误。

返回值

它返回一个可观察对象,以通知错误。

示例

import { throwError, concat, of } from 'rxjs';

const result =throwError(new Error('error occurred'));
result.subscribe(x => console.log(x), e => console.error(e));

输出

throwError Operator
广告