我有5個「頁」像Ngif與圖像Angular2
http://localhost:4201/app?part=1
http://localhost:4201/app?part=2
http://localhost:4201/app?part=3
....
我有5張圖片,我想每一個圖像匹配到每個頁面的ngIf
幫助(如果可能)。
爲此,在我的組件我有這條線,這告訴我,我有哪個部分現在
ngOnInit() {
this.pageNumber = this.activatedRoute.snapshot.queryParams["part"];
}
我也有我的組件
myImg = '../../assets/image1.jpg';
而且在模板我有
<img [src]="myImg"/>
我想要的是像邏輯像
if pageNumber = 1 then <img [src]="myImg1"/>
if pageNumber = 2 then <img [src]="myImg2"/>
if pageNumber = 3 then <img [src]="myImg3"/>
等等...
你能告訴我,我怎麼能寫ngIf聲明在我的情況?我從文檔中嘗試了一些例子,但是他們都沒有爲我工作。