Angular 4 - 仅在设置src时显示图像

时间:2018-02-01 15:38:06

标签: angular

在我的component.html中我得到<img [src]="terminalImage" width="15%">所以我希望在用户使用搜索功能后显示图像。但现在,当他进入/search路线时,他看到了这一点,直到他使用了搜索:

enter image description here

所以我需要隐藏图像或某事。这样,直到用户使用搜索功能并填充[src]

1 个答案:

答案 0 :(得分:4)

使用* ngIf

<img *ngIf="terminalImage" [src]="terminalImage" width="15%">