使用angular2调用REST服务和全局错误捕获的最佳实践[关闭]

问题描述 投票:5回答:2

使用angular2 REST SERVICE调用并捕获任何全局异常以处理错误和显示自定义消息的最佳实践是什么。

有没有人经历过这个?

rest error-handling angular
2个回答
11
投票

到目前为止我发现的最佳实践是首先创建全球服务并创建与http相关的方法。即Get,Put,Post,Delete请求等,而不是通过使用这些方法调用您的API服务请求,并使用catch块和显示消息捕获错误,例如: -

Global_Service.ts

import {Injectable} from '@angular/core';
import {Http, Response, RequestOptions, Headers, Request, RequestMethod} from '@angular/http';
import {Observable} from 'rxjs/Rx';
import 'rxjs/Rx';

@Injecable()
export class GlobalService {
    public headers: Headers;
    public requestoptions: RequestOptions;
    public res: Response;

    constructor(public http: Http) { }

    public PostRequest(url: string, data: any): any {

        this.headers = new Headers();
        this.headers.append("Content-type", "application/json");
        this.headers.append("Authorization", 'Bearer ' + key );

        this.requestoptions = new RequestOptions({
            method: RequestMethod.Post,
            url: url,
            headers: this.headers,
            body: JSON.stringify(data)
        })

        return this.http.request(new Request(this.requestoptions))
            .map((res: Response) => {
                    return [{ status: res.status, json: res }]
            })
            .catch((error: any) => {     //catch Errors here using catch block
                if (error.status === 500) {
                    // Display your message error here
                }
                else if (error.status === 400) {
                    // Display your message error here
                }
            });
    }

    public GetRequest(url: string, data: any): any { ... }

    public PutRequest(url: string, data: any): any { ... }

    public DeleteRequest(url: string, data: any): any { ... }
 }

最好在引导您的应用程序时提供此服务作为依赖项,如下所示: -

bootstrap (APP, [GlobalService, .....])

然后,无论你想在哪里调用请求,都可以使用以下全局服务方法调用请求: -

demo.ts

export class Demo {
     ...
    constructor(public GlobalService: GlobalService) { }

    getMethodFunction(){
       this.GlobalService.PostRequest(url, data)
        .subscribe(res => {console.log(res),
                   err => {console.log(err)}
             });
    }

也可以看看


2
投票

最好的解决方案是使用您自己的服务包装Http服务。例如,您创建了一个名为YourHttp的服务。 YourHttp应该实现与Http相同的接口。

Http注入YourHttp并使每个方法,getpostput等调用http方法然后捕获并处理任何错误。

现在在你的组件中注入YourHttp。要获得额外的功劳,请在注释组件注入YourHttp时配置DI以注入Http

更新

既然有HttpClient,最好使用拦截器。

© www.soinside.com 2019 - 2024. All rights reserved.