Some experience of using Localstorage to store data

Source: Internet
Author: User

Localstorage Storage Methods

Localstorage.name = localstorage["name"]= ' Vanida '; Localstorage.setitem ("Name", "Vanida");//The three sets of values are the same;

Localstorage Get Value method
var name = localstorage["name"] = localstorage.name= localstorage.getitem ("name");//The three ways to get the values are the same;

Localstorage Clearing Value method
Localstorage.removeitem ("name"); or localstorage.name= ";// clears the value of name

Localstorage can only store strings, and if you need to store objects, first convert them to strings. Use of json.stringify ();

Example:

var person = {name: ' Vanida ', ' Sex ': ' Girl ', ' Age ': 25};localstorage.setitem (' person ', json.stringify (person) ');

localstorage.person= "{" name ":" Vanida "," Sex ":" Girl "," Age ": 25}"

Then remove the person's object you can use Json.parse ();

Example:

person = Json.parse (Storage.getitem ("person"));

{Name: "Vanida", Sex: "Girl", age:25}

Some experience of using Localstorage to store data

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.