我的问题是调用来自错误正文的另一个http调用是正确的还是有一些其他的方法,因为在我的代码中我已经实现了它并且它正在工作但是想要问推荐的方式
`this.httpService.somefunction('get', url, function (data) {
//one more http call
}, function (err) {
//one more http call here as well on error
}, {});`
答案 0 :(得分:0)
如果您使用rxjs Observable
,请搜索finally
方法。在第一次请求返回任何结果后,可以执行该操作。