0

Can I store web Data Using Mobile by Localhost?

Using Localhost Website Data store Free Data Far always?

2nd Sep 2020, 1:25 PM
Muhammad Zahir
Muhammad Zahir - avatar
1 ответ
+ 1
Cookies and local storage( https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage ) are available to websites but they can be removed by the person using the web browser. Aside from cookies and local storage, if you're making a website the only other place to store information related to the person who is visiting the site is on the server. If you're making a native mobile application instead of a web application, there are many options for local memory. - SQLite is very popular for local memory in an Android application. - Your app could get permission to read and write files.
3rd Sep 2020, 7:29 PM
Josh Greig
Josh Greig - avatar