使用angular2 REST SERVICE调用并捕获任何全局异常以处理错误和显示自定义消息的最佳实践是什么。
有没有人经历过这个?
到目前为止我发现的最佳实践是首先创建全球服务并创建与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)}
});
}
也可以看看
最好的解决方案是使用您自己的服务包装Http
服务。例如,您创建了一个名为YourHttp
的服务。 YourHttp
应该实现与Http
相同的接口。
将Http
注入YourHttp
并使每个方法,get
,post
,put
等调用http
方法然后捕获并处理任何错误。
现在在你的组件中注入YourHttp
。要获得额外的功劳,请在注释组件注入YourHttp
时配置DI以注入Http
。
更新
既然有HttpClient,最好使用拦截器。