我想隐藏我的hello world from sinclair
if(id!= 1)。我从<iframe></iframe>
获取ID,而我从查询中获取
我是angular的新手,我来自C#背景,但是目前正在使用angular6。如何解决此问题。
答案 0 :(得分:3)
尝试这样:
<iframe *ngIf="test.id !=1"><iframe>
或
<ng-container *ngIf="test.id !=1">
<iframe></iframe>
</ng-container>
答案 1 :(得分:1)
<iframe *ngIf="test.id !== 1">
</iframe>
如果还有
<iframe *ngIf="test.id !== 1; else otherContent">
</iframe>
<ng-template #otherContent>
</ng-template>
答案 2 :(得分:0)
<div *ngIf="selectedStudent.schoolId == 29; then ifcondition else elsecondition"></div>
<template #ifcondition>
<iframe id="myIframe" onload="delayedLoad()"></iframe>
</template>
<template #elsecondition>
<span> Else Condition Works!</span>
</template>
这是我的回答,可以在我的状态下工作。