The data displays on preview but not on the web. Can you help me please.
import wixData from ‘wix-data’;
function getdata(){
let query = wixData.query(‘HabitatAbordable’);
return query.limit(200).find().then(results => {
console.log(‘getData’, results);
return results.items;
});
}
$w.onReady( () => {
$w(’ #habitatwrite ‘).onAfterSave( () => {
getdata().then ((items) => {
$w(’ #habitatlist ').data = items;
});
});
//TODO: write your page related code here…
// Gets today’s date
const today = new Date();
// Sets the property of the text element to be a string representing today’s date in the user’s local format
$w(" #dateText ").text = today.toLocaleDateString();
});
see on : https://www.habitatsevolutifs.com/formulaire-d-insciption-1 (web site)
Preview mode