“Установите LocalStorage” Ответ

javaScript Установите локальное значение хранения

var testObject = { 'one': 1, 'two': 2, 'three': 3 };

// Put the object into storage
localStorage.setItem('testObject', JSON.stringify(testObject));

// Retrieve the object from storage
var retrievedObject = localStorage.getItem('testObject');

console.log('retrievedObject: ', JSON.parse(retrievedObject));
Mobile Star

LocalStorage SetItem JavaScript

let fruits = [
	{ name: 'apple', color: 'red', number: 1 },
  	{ name: 'orange', color: 'orange', number: 2 }
]
localStorage.setItem("saved_fruits", JSON.parse(JSON.stringify(fruits)));
Thyago Mac

Как SetItem и GetItem в JavaScript в LocalStorage

function set(){
    var sendJSON = JSON.stringify(allMovie);
    localStorage.setItem('allMovie',sendJSON)
}

function get(){
    var getJSON = localStorage.getItem('allMovie');
    if (getJSON){
        allMovie = JSON.parse(getJSON)
    }

}
Weary Weasel

Местное хранение JavaScript

function createItem() {
	localStorage.setItem('nameOfItem', 'value'); 
} 
createItem() // Creates a item named 'nameOfItem' and stores a value of 'value'

function getValue() {
	return localStorage.getItem('nameOfItem');  
} // Gets the value of 'nameOfItem' and returns it
console.log(getValue()); //'value';
DCmax1k

Местное хранение JavaScript

localStorage.setItem('user_name', 'Rohit'); //store a key/value
var retrievedUsername = localStorage.getItem('user_name'); //retrieve the key
Grepper

Установите LocalStorage

function set(){
    var sendJson = JSON.stringify(arrayName);
    localStorage.setItem('key',sendJson)
}
Bad Bug

Ответы похожие на “Установите LocalStorage”

Вопросы похожие на “Установите LocalStorage”

Больше похожих ответов на “Установите LocalStorage” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования