[Urgent] How to reload Page's Content after clicked Back

I have a Project with multiple Pages. When User change data in a page with Ajax and return to the mainpage (Like Kitchen-Sink Tutorial) and access to the pages again, the data user had inputted will not be save(I have server-sided code to display the chance but it only work if you reload the page)

My site: https://studentzone.me/

Hi, you may try to disable Ajax cache by setting cache: false app parameter

1 Like

var myApp = new Framework7({
modalTitle: ‘iStudy’,
animateNavBackIcon: true,
cache: false
});

Is it correct?

1 Like