最佳答案
在使用 Http 服务的 Angular 2文档页面上,有一个示例。
getHeroes (): Observable<Stuff[]> {
return this.http.get(this.url)
.map(this.extractData)
.catch(this.handleError);
}
我克隆了 角度2-网包起动器项目并自己添加了上面的代码。
我导入 Observable
使用
import {Observable} from 'rxjs/Observable';
我假设也导入了属性 Observable
(.map
工作)。查看 rxjs.beta-6的变更日志,没有提到 catch
。