我有一个指令,我想添加到div,但仅当用户在特定页面上时。下面的代码显示了该指令,但我希望只有在第二个代码段中该页面如下所示时才添加它 - 我有变量selectedSection
,它将为我提供用户所在的页面
//我的HTML代码
<div class="dynamic-tabs" prompt="manage">
//我的伪代码
if (selectedSection == 'admin') then add the 'prompt="manage" directive
答案 0 :(得分:0)
* ngIf条件怎么样? (或ng-if with Angular 1)
<div class="dynamic-tabs" prompt="manage" *ngIf="selectedSection === 'admin'"> </div>
<div class="dynamic-tabs" *ngIf="selectedSection !== 'admin'"> </div>