我的Angular 2应用程序中的错误处理有问题。 当后端服务器脱机时,我在控制台中收到此未被捕获的错误:
GET http://localhost:4200/api/public/index.php/data 504(网关超时)
我在服务中的http.get看起来像这样:
getData(): Observable<any> {
let apiUrl = `${API_URL}data`;
this.http.get(apiUrl)
.map((res => res.json() || []))
.subscribe(response => {
let data = [];
let index = 0;
if (typeof(response.data) !== 'undefined' && response.success !== false) {
// add index to each entry
response.data.forEach(entry => {
data.push({
id: index++,
title: entry.title,
others: entry.others
});
});
this.dataCollection = data;
this.subject.next(data);
}
}, error => {
this.subject.error("The Server could not be reached. Please wait until a connection can be established, or reload the page.");
});
return this.subject.asObservable();
}
如何阻止Angular 2将此错误发送到控制台?
答案 0 :(得分:0)
在不知道您对HTTP请求使用哪种依赖关系的情况下,几乎不可能确定问题所在。
我最近回答了有关TypeScript中HTTP请求的另一个问题:Http Request in TypeScript
希望这会有所帮助:)