starkas Çok genel bir soru olmuş. Hangi teknolojileri kullandığınızı belirtebilirsiniz. Ben angular tarafında şu şekilde yapardım;
product.component.ts
product = {
id: 1,
title: 'Dell XPS 13 9380 Intel Core i7 8565U 16GB 512GB SSD Windows 10 Pro 13.3 HD Taşınabilir Bilgisayar UT56WP165N',
brand: 'Dell',
model: 'XPS 13 9380',
images: [
'http://placekitten.com/g/200/300',
'http://placekitten.com/g/200/300',
'http://placekitten.com/g/200/300'
]
};
product.component.html
<div>
<h2>{{ product.title }}</h2>
<img *ngFor="let image of product.images" [src]="image" alt="image">
</div>