let htmlProducts= document.getElementById('xnxx') url_list_product = "http://localhost:5000/api/product/view-all" fetch(url_list_product) .then(function(respone) { return respone.json(); }) .then(function(products) { console.log("ok"); console.log(JSON.parse(products)); var htmls = // products.forEach(element => { // var htmls = ` //
//
// //
//
${element.name}
//

${element.description}Một chuyến phiêu lưu mới đầy bất ngờ và hấp dẫn, cùng 12 cùng // hoàng đạo lớp học mật ngữ

//

${element.price}

//
//
// // Xem chi tiết // // //
//
//
`; // t += htmls; // }); // }) products.map(function(data) { console.log("h----") console.log(data.name); return `
${data.name}

${data.description}Một chuyến phiêu lưu mới đầy bất ngờ và hấp dẫn, cùng 12 cùng hoàng đạo lớp học mật ngữ

${data.price}

Xem chi tiết
`; }); var listProducts = document.getElementById('xnxx'); listProducts.innerHTML = htmls.join(''); }) .catch(function(err){ console.log(err); })