ARÇELİK YM 3200 I Tadı Var® ProbiyotikYoğurt & Kefir Makinesi

ARÇELİK YM 3200 I Tadı Var® ProbiyotikYoğurt & Kefir Makinesi

Fiyat : ₺8.899,00(KDV Dahil)
₺1.167,25 `den başlayan taksitlerle

 

Genel Özellikler

 

Tek Kişilik Yoğurt Kabı Malzemesi

Cam

 

 

Tek Kişilik Yoğurt Kap Sayısı

7

 

 

Dijital Kontrol Ekranı

Var

 

 

Zamanlama Özelliği

Var

 

 

Yoğurt Kabı Malzemesi

Cam

 

 

Tek Kişilik Yoğurt Kabı

Var

 

 

 

Ölçüler

 

Ağırlık

4.2 kg

 

 

Derinlik

24 cm

 

 

Boyut (cm) (GxYxD)

20 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); }