Search results
26 lip 2024 · The localStorage read-only property of the window interface allows you to access a Storage object for the Document's origin; the stored data is saved across browser sessions.
26 lip 2024 · The Storage interface of the Web Storage API provides access to a particular domain's session or local storage. It allows, for example, the addition, modification, or deletion of stored data items.
26 lip 2024 · A different storage object is used for the sessionStorage and localStorage for each origin — they function and are controlled separately. To learn about the amount of storage available using the APIs, and what happens when storage limits are exceeded, see Storage quotas and eviction criteria.
6 kwi 2020 · Czym jest Local Storage? Jak sama nazwa wskazuje, jest pewnego rodzaju „magazynem danych” w przeglądarce. Możemy z niego korzystać w naszych aplikacjach webowych. Z racji tego, iż aplikacja taka będzie napisana w JavaScript dane w tym przypadku będą przechowywane w formacie key-value. Dokładnie tak jak ma to miejsce w przypadku obiektów JavaScript:
8 lis 2013 · Storage « Local storage writes the data to the disk, while session storage writes the data to the memory only. Any data written to the session storage is purged when your app exits.
28 mar 2011 · Zapisane w localStorage obiekty służą do długotrwałego przechowywania danych i pozostają na dysku po zamknięciu przeglądarki. W przeciwieństwie do cookies, obiekty z localStorage nie są automatycznie odczytywane przez serwer przy połączeniu. Należy je przekazać za pomocą AJAX-u.
20 lut 2024 · To store data in local storage, you use the setItem() method. This method takes in two arguments, a key and a value. If the key does not exist in local storage, the setItem() method will create a new key and assign the given value to it.