在Angular中,ngIf指令可以根据条件来显示或隐藏HTML元素。当条件为false时,我们可以使用then和else关键字来定义两个不同的模板。
以下是使用then和else的示例代码:
This is displayed when condition is true.
This is displayed when condition is false.
在上面的示例中,当条件为true时,显示trueBlock模板;当条件为false时,显示falseBlock模板。
你也可以使用内联模板来定义then和else块,如下所示:
This is displayed when condition is true.
This is displayed when condition is false.
在上面的示例中,当条件为false时,使用else关键字和内联模板来显示HTML元素。
这就是使用Angular ngIf指令和then/else关键字来控制显示的解决方法。