const url_coupang_goldbox = 'https://www.ttmkt.com/api/coupang/products/goldbox/'; function formatNumber(num) { return num.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,'); } var post_date = new Date(); var post_date_y = post_date.getFullYear(); var post_date_mm = ("0" + (post_date.getMonth() + 1)).slice(-2); var post_date_dd = ("0" + (post_date.getDate())).slice(-2); fetch(url_coupang_goldbox) .then(res => res.json()) .then(feed => { let feed_product = feed['data']; // console.log(feed_product); let output = '
' + // '
' + // '' + // '' + // '' + // '
' + '' + '실시간 할인 상품 모음 (최대 75%)' + // '쿠팡 실시간 할인 상품 모음 (최대 75%)' + '' + '
( 자동 업데이트 : ' + post_date_y + '-' + post_date_mm + '-' + post_date_dd + ' )
' + // '
( 자동 업데이트 : ' + post_date_y + '-' + post_date_mm + '-' + post_date_dd + ' / : 로켓배송 )
' + '
' + ''; for (let i in feed_product) { // if ( feed_product[i].isRocket == true ) { // var rocket_delivery_icon = ''; // } else { var rocket_delivery_icon = ''; // } id = Number(i) + 1; output += ''; if ( ( id === feed_product.length ) || ( id === 10 ) ) { break; } } output += '
#이미지상품명할인가링크
' + id + '' + '' + '' + '' + '' + '' + feed_product[i].productName + rocket_delivery_icon + '' + '' + '' + formatNumber(feed_product[i].productPrice) + ' 원' + '' + '' + '' + '자세히
보기' + '
' + '
' + '
' + 'Powered by Auto Ads System' + '
' + ''; document.getElementById('coupang-goldbox').innerHTML = output; })