在使用ng-template时,若同时使用了ngIf指令,则需要确保ngIf指令的条件为true时才能正确展示ng-template。否则,ng-template将不能正确渲染。
以下是一个代码示例:
// 这里为ng-template的模板内容
在这个示例中,ng-container使用了*ngIf指令,当showContent为true时,才会展示ng-template的内容。同时,ng-template指定了一个#content的模板引用,以供在其他地方引用。
上一篇:Angular*ngIfwithconcatenatedstring”(在Angular中使用拼接字符串的*ngIf)
下一篇:Angular*ngIf指令绑定到函数时不会触发变更检测