top of page

OUR METHOD

What We Stand For

At ZMA Combat + Fitness, our approach is what makes us the best. We combine next level combat training with fitness in a family atmosphere. All of our team members are highly qualified and ready to accompany youu on your journey to reach your goals.  It doesn’t matter if you’re new to this or are just ready to take it to the next level. At ZMA Combat + Fitness, we will help you get where you want to go.

WechatIMG51.jpeg
bottom of page
import wixData from 'wix-data'; export function button1_click(event) { let file = $w("#uploadButton").value[0]; let url = await uploadFile(file); let memberId = wixUsers.currentUser.id; wixData.get("Members", memberId) .then((member) => { member.profilePhoto = url; return member.save(); }) .catch((err) => { console.log(err); }); } function uploadFile(file) { return new Promise((resolve, reject) => { let name = file.name; let type = file.type; let size = file.size; wixData.getUploadUrl() .then((uploadUrl) => { return fetch(uploadUrl, { method: "PUT", headers: { "Content-Type": type, "Content-Length": size }, body: file }); }) .then((response) => { if (response.ok) { resolve(name); } else { reject(response.statusText); } }) .catch((err) => { reject(err); }); }); }