继这篇文章之后,我有以下内容
Observable.combineLatest(
this.translate.get("key1"),
this.translate.get(""),
this.translate.get("key3"),
this.translate.get("key4")
)
.subscribe(([result1, result2, result3, result4]) => {
console.log(result1);
console.log(result2);
console.log(result3);
console.log(result4);
},
error => {
console.log(`${error}`);
});
在第 2 行我得到一个错误,但这似乎并没有进入error
上面的处理程序。不幸的是,我发现的示例和文档似乎不包括如何捕获错误(假设上述方法可行)。
有人对如何做到这一点有任何想法吗?