我有一个tabView和一个选项卡面板列表。根据运行时条件,我需要隐藏和取消隐藏其中一个选项卡面板。无法通过查看他们的文档或此处找到这样做的方法。有什么建议?
一般来说有没有办法动态添加和删除选项卡面板?
我现在使用的代码不起作用,我的测试语法必定是错误的:
<div [ngSwitch]="isNEC">
<ng-template ngSwitchCase="'true'">
<p-tabView>
<p-tabPanel header="Detail">
<linechart #linechart></linechart>
</p-tabPanel>
<p-tabPanel header="Assessment">
Coming soon to a theater near you !!!!
</p-tabPanel>
</p-tabView>
</ng-template>
<ng-template ngSwitchCase="'false'">
<p-tabView>
<p-tabPanel header="Detail">
<linechart #linechart></linechart>
</p-tabPanel>
</p-tabView>
</ng-template>
</div>
除非我把开关默认,否则什么都没有出现。 isNEC是string类型的组件公共属性
一切都很好,我只需要检查'真'而不是''真''