ARÇELİK MM 9042 DS Gurme Profesyonel Mutfak Makinesi

ARÇELİK MM 9042 DS Gurme Profesyonel Mutfak Makinesi

Fiyat : ₺0,00(KDV Dahil)

 

Genel Özellikler

 

Güç

1000 W

 

 

Gövde Malzemesi

Döküm

 

 

Hız Ayarı

12

 

 

Dijital Zaman Ayarlayıcı

Var

 

 

Yoğurma Ucu

Var

 

 

Çırpma Ucu

Var

 

 

Çiğ Köfte Aksesuarı

Var

 

 

Ürün Rengi

Siyah

 

 

 

Aksesuarlar

 

Çiğ Köfte Aksesuarı

Var

 

 

 

Ölçüler

 

Ağırlık

8.58 kg

 

 

Derinlik

22.5 cm

 

 

Boyut (cm) (GxYxD)

39 cm

 

 

cultureSettings.RegionId: 0 cultureSettings.LanguageCode: TR
function getReviews() { fetch(url, { method: 'GET', headers: { "Authorization": `Bearer ${apiKey}`, "Content-Type": "application/json" } }) .then(response => response.json()) .then(data => { console.log("API Yanıtı:", data); // API yanıtını görmek için if (data.data && data.data.length > 0) { const productId = data.data[0].id; fetchProductReviews(productId); } else { console.log("Barkod ile ürün bulunamadı."); } }) .catch(error => { console.error("Hata oluştu:", error); }); } function displayReviews(reviews) { console.log("Yorumlar:", reviews); // Yorum verilerini görmek için const reviewsContainer = document.createElement("div"); reviewsContainer.classList.add("commentTiciNewComment"); if (reviews.length === 0) { reviewsContainer.innerHTML = `

Henüz yorum yapılmamış.

`; } else { reviews.forEach(review => { const reviewElement = document.createElement("div"); reviewElement.classList.add("commentTiciNewCommentText"); reviewElement.innerHTML = `

${review.reviewerName} - Rating: ${review.rating}

${review.comment}

`; reviewsContainer.appendChild(reviewElement); }); } const parentContainer = document.querySelector(".commentTiciNewComment"); parentContainer.appendChild(reviewsContainer); }