top of page

CONTATORE DELLE LETTURE DEI POST

LEZIONE 13: IL CODICE DEL CONTATORE LETTURE POST

In questa tredicesima mini-lezione inseriamo il codice del contatore delle letture dei singoli post. Con questo piccolo codice terminiamo la gestione del Muro.

  • LIVELLO: base

  • GRAFICA: no

  • CODICE: si

  • DATABASE: no

Modificare il codice di container_1 come segue

export function container1_click(event) {
  $w("#dynamicDataset").onReady(() => {
            
let $item = $w.at(event.context);
let currentItem = $item("#dynamicDataset").getCurrentItem();
let dynamicPageID = `${currentItem._id}`

currentItem.letture = currentItem.letture+1;

wixData.update("UserPosts", currentItem).then(()=>{
                    $w("#dynamicDataset").refresh(); 
           
});

            wixLocation.to('/user-posts/' + dynamicPageID);
 
        }); 

   } 
 

bottom of page