我刚刚开始在我的 Ionic 2 (Angular 2) 项目中使用 ng2 translate。我发现当我需要一次获取几个字符串时,代码会变得嵌套并且更难阅读。我有点想知道为什么像这样的东西(只发出一个值)需要使用可观察的,但也许有一个很好的理由。反正...
例如,假设我在一个方法的不同点有 4 个字符串要读取
let result1: string;
let result2: string;
let result3: string;
let result4: string;
this.translate.get("key1").subscribe(value1 => {
result1 = value1;
this.translate.get("key2").subscribe(value2 => {
result2 = value2;
// do some other stuff, which may have another observable returned so yet another level of nesting)
this.translate.get("key3").subscribe(value3 => {
result3 = value3;
// do some other stuff
this.translate.get("key4").subscribe(value4 => {
result4 = value4;
}
}
...
现在想象有超过 4 个字符串。此外,当在这之间有其他代码时(例如,我也可以调用也返回 Observable 的 Ionic 存储),代码变得非常嵌套 - 这是没有错误处理的。
所以,问题是:有没有一种“更平坦”的方式来做到这一点?是否有任何链接(即使类似于 Promise “链接”),可能包括错误处理(即使有某种顶级 catch 块)
我见过其他链接的例子,但他们似乎更多地使用操作符而不是像上面的许多可观察对象。