Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

localStorage not working in iphone (ionic app)

I have a problem with localStorage on an ionic app on iphone. on android it seems to work ok. on iphone the localstorage just expires after awhile. I've tried with $localStorage.test using angular ngStorage.js. and with: window.localStorage.test same results. anyone experienced this? any solution? Thanks. Rafi.

like image 750
Rafi Ben Zaken Avatar asked Aug 04 '26 21:08

Rafi Ben Zaken


1 Answers

If there is low internal memory on iPhone, iOS automatically delete some caches and localstorage.

LocalStorage works well if there is sufficient memory on the device(usually more than 20mb at least)

So better to use sqlite instead of localstorage :)

like image 158
Jameel Grand Avatar answered Aug 06 '26 10:08

Jameel Grand