我正在努力处理 Angular 6 的异步问题。这是一个例子。我只想进入'if'并显示控制台日志,但它从未发生过。getListOne 和 getListTwo 调用 Observable API 并在我的 html 上很好地显示。
ListOne = [];
ListTwo = [];
ngOninit() {
this.getListOne();
this.getListTwo();
if (this.ListTwo.length > 0 ) {
console.log("well done at least !";
}
}