// Backend (data.js) import { fetch } from 'wix-fetch'; export function getCoupons() { const url = 'https://api.yoursite.com/coupons'; // Thay bằng URL API của bạn return fetch(url) .then(response => response.json()) .then(json => json.coupons) .catch(error => console.error('Error:', error)); } // Frontend (page code) import { getCoupons } from 'backend/data.js'; $w.onReady(function () { getCoupons().then(coupons => { $w("#repeater1").data = coupons; }); }); // Thiết lập Repeater $w.onReady(function () { $w("#repeater1").onItemReady(($item, itemData, index) => { $item("#text1").text = itemData.title; $item("#text2").text = itemData.description; $item("#button1").label = "Sử Dụng Mã"; $item("#button1").link = itemData.link; }); });
top of page

Đây là trang mà bạn có thể tìm thấy những thứ giúp cho việc ăn uống của bạn trở nên khoa học hơn, "heo thì". Đừng để " bệnh từ miệng mà vào, họa từ miệng mà ra"

Đồ uống nhiệt đới
Nhúng xanh tươi

EAT CLEAN

Item Title

Describe the item and include any relevant details. Click to edit the text.

Item Title

Describe the item and include any relevant details. Click to edit the text.

Item Title

Describe the item and include any relevant details. Click to edit the text.

Item Title

Describe the item and include any relevant details. Click to edit the text.

bottom of page