本文整理汇总了TypeScript中rxjs.throwError函数的典型用法代码示例。如果您正苦于以下问题:TypeScript throwError函数的具体用法?TypeScript throwError怎么用?TypeScript throwError使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了throwError函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: catchError
catchError(err =>
throwError(new HttpException('Message', HttpStatus.BAD_GATEWAY)),
开发者ID:SARAVANA1501,项目名称:nest,代码行数:2,代码来源:exception.interceptor.ts
示例2: catchError
catchError((err) => throwError(err))
开发者ID:Alfresco,项目名称:alfresco-ng2-components,代码行数:1,代码来源:nodes-api.service.ts
示例3: catchError
catchError(_ => throwError(new Error('Unable to get titles')))
开发者ID:tobihagemann,项目名称:shitishot,代码行数:1,代码来源:game.service.ts
示例4: throwError
a: [() => throwError('err'), () => of(FIXTURE_RESULT)],
开发者ID:JoYiRis,项目名称:sourcegraph,代码行数:1,代码来源:hover.test.ts
示例5: flatMap
flatMap(value =>
typeof value !== 'number'
? throwError(`Value "${value}" is not a valid number.`)
: of(value)
开发者ID:jesuscc1993,项目名称:demos,代码行数:4,代码来源:retryWhen.ts
示例6: write
write(_path: Path, _content: virtualFs.FileBufferLike) {
return throwError(new Error('Not supported.'));
}
开发者ID:rexebin,项目名称:angular-cli,代码行数:3,代码来源:webpack-input-host.ts
示例7: rename
rename(_from: Path, _to: Path) {
return throwError(new Error('Not supported.'));
}
开发者ID:rexebin,项目名称:angular-cli,代码行数:3,代码来源:webpack-input-host.ts
示例8: it
it('should consume errors encountered when loading start form', () => {
getStartFormSpy.and.returnValue(throwError({}));
component.processDefinitionId = exampleId1;
component.ngOnInit();
});
开发者ID:Alfresco,项目名称:alfresco-ng2-components,代码行数:5,代码来源:start-form.component.spec.ts
示例9: onInput
//.........这里部分代码省略.........
});
// We don't want to subscribe errors and complete.
subscriptions.push(run.progress.subscribe(event => progressChannel.next(event)));
return run;
},
async scheduleBuilder(
builderName: string,
options: json.JsonObject = {},
scheduleOptions: ScheduleOptions = {},
) {
const run = await scheduleByName(builderName, options, {
scheduler,
logger: scheduleOptions.logger || logger.createChild(''),
workspaceRoot: i.workspaceRoot,
currentDirectory: i.currentDirectory,
});
// We don't want to subscribe errors and complete.
subscriptions.push(run.progress.subscribe(event => progressChannel.next(event)));
return run;
},
async getTargetOptions(target: Target) {
return scheduler.schedule<Target, json.JsonValue, json.JsonObject>(
'..getTargetOptions', target).output.toPromise();
},
async getBuilderNameForTarget(target: Target) {
return scheduler.schedule<Target, json.JsonValue, string>(
'..getBuilderNameForTarget',
target,
).output.toPromise();
},
async validateOptions<T extends json.JsonObject = json.JsonObject>(
options: json.JsonObject,
builderName: string,
) {
return scheduler.schedule<[string, json.JsonObject], json.JsonValue, T>(
'..validateOptions',
[builderName, options],
).output.toPromise();
},
reportRunning() {
switch (currentState) {
case BuilderProgressState.Waiting:
case BuilderProgressState.Stopped:
progress({ state: BuilderProgressState.Running, current: 0, total }, context);
break;
}
},
reportStatus(status: string) {
switch (currentState) {
case BuilderProgressState.Running:
progress({ state: currentState, status, current, total }, context);
break;
case BuilderProgressState.Waiting:
progress({ state: currentState, status }, context);
break;
}
},
reportProgress(current: number, total?: number, status?: string) {
switch (currentState) {
case BuilderProgressState.Running:
progress({ state: currentState, current, total, status }, context);
}
},
analytics: new analytics.ForwardingAnalytics(report => analyticsChannel.next(report)),
addTeardown(teardown: () => (Promise<void> | void)): void {
teardownLogics.push(teardown);
},
};
context.reportRunning();
let result: BuilderOutputLike;
try {
result = fn(i.options as OptT, context);
} catch (e) {
result = throwError(e);
}
if (isPromise(result)) {
result = from(result);
} else if (!isObservable(result)) {
result = of(result);
}
// Manage some state automatically.
progress({ state: BuilderProgressState.Running, current: 0, total: 1 }, context);
subscriptions.push(result.pipe(
tap(() => {
progress({ state: BuilderProgressState.Running, current: total }, context);
progress({ state: BuilderProgressState.Stopped }, context);
}),
).subscribe(
message => observer.next(message as OutT),
error => observer.error(error),
() => observer.complete(),
));
}
开发者ID:angular,项目名称:angular-cli,代码行数:101,代码来源:create-builder.ts
示例10: throwError
erroringService.addStudent.and.callFake(() => throwError('service error'));
开发者ID:vgebrev,项目名称:Tesli,代码行数:1,代码来源:student-detail.component.spec.ts
注:本文中的rxjs.throwError函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论