top of page
Saving data into a collection
I'm a paragraph. Click here to add your own text and edit me. It's easy.
import wixData from 'wix-data';
$w.onReady(function () {
$w('#yourButtonId').onClick(function () {
wixData.insert('yourCollectionId', {
title: $w('#nameInput').value,
email: $w('#emailInput').value
});
});
});
bottom of page