在兩個不同的組件有限的數據例如如何顯示在角2
我已在其中所有圖像從JSON示出共享組件稱爲圖像畫廊製成。現在我在主頁和圖庫頁面中使用這個共享組件。在主頁上,我想先顯示8張圖像,並在圖庫頁面中顯示所有圖像。
共享組件
@Component({
selector: 'app-gallery',
templateUrl: './gallery.component.html'
})
export class GalleryComponent implements OnInit {
//getting images data from my service
}
HTML是共享的組件是
<div class="col-md-3 col-sm-6" *ngFor="let image of gallery">
<div class="gallery-img">
<a href="">
<img src="{{gallery.images[0]}}">
</a>
</div>
</div>
主頁的HTML組件
<app-gallery></app-gallery> //Here i want show 8 images only
圖庫組件頁
<app-gallery></app-gallery> // Here i want to show all images from gallery
你可以發佈你的組件的代碼? –
什麼是共享組件,它是什麼選擇器,它在哪裏使用? –