// 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
cặp đôi chạy bộ

"Chạy bộ không khó, khó nhất là xỏ giày và bước ra khỏi cửa!"

Chào các bạn, đây là trang mà DuyCf sẽ chia sẻ những kinh nghiệm mà nghiệm lại thấy kinh trong quá trình tập thành vào lấn sâu vào bộ môn chạy bộ.

Chạy bộ là bộ môn giúp cho bạn có một trái tim siêu khỏe mạnh! 

Gét Go!

chạy và nhảy

Phương Pháp MAF là gì?

Cải tiến

Hide and Seek

T.Kế lại

bottom of page