ARÇELİK A50 E 795 B Google TV

ARÇELİK A50 E 795 B Google TV

Fiyat : ₺25.999,00(KDV Dahil)
₺7.094,48 `den başlayan taksitlerle

Genel Özellikler

 

Android İşletim Sistemi

XL

 

 

Çözünürlük

ULTRA HD

 

 

İşlemci

Dört Çekirdek

 

 

İnç/Ekran Boyutu

50'/126 cm

 

 

Ürün Rengi

Siyah

 

 

İşletim Sistemi

GoogleTV

 

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