我想要做的是能够创建一个变量,给它一个值,关闭并重新打开窗口,并能够检索我在上一个会话中设置的值。最简单的方法是什么?欢迎使用JQuery答案。
答案 0 :(得分:67)
使用localStorage。这是持续的会议。
写作:
localStorage['myKey'] = 'somestring'; // only strings
阅读:
var myVar = localStorage['myKey'] || 'defaultValue';
如果需要存储复杂结构,可以使用JSON序列化它们。例如:
阅读:
var stored = localStorage['myKey'];
if (stored) myVar = JSON.parse(stored);
else myVar = {a:'test', b: [1, 2, 3]};
写作:
localStorage['myKey'] = JSON.stringify(myVar);
请注意,您可以使用多个密钥。它们都将被同一域中的所有页面检索。
除非您想与IE7兼容,否则您没有理由使用过时的小cookie。
答案 1 :(得分:11)
您有三种选择:
答案 2 :(得分:8)
如果您的要求允许,您可以创建一个cookie。如果您选择采用cookie路由,则解决方案可能如下所示。使用cookie的好处还在于用户关闭浏览器并重新打开后,如果尚未删除cookie,则该值将被保留。
<强>曲奇强> * 创建并存储Cookie: *
function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}
将返回指定Cookie的函数:
function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
{
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
x=x.replace(/^\s+|\s+$/g,"");
if (x==c_name)
{
return unescape(y);
}
}
}
如果已设置Cookie,则显示欢迎讯息
function checkCookie()
{
var username=getCookie("username");
if (username!=null && username!="")
{
alert("Welcome again " + username);
}
else
{
username=prompt("Please enter your name:","");
if (username!=null && username!="")
{
setCookie("username",username,365);
}
}
}
上述解决方案是通过cookie保存价值。它是一种非常标准的方式,无需在服务器端存储值。
<强> Jquery的强>
为会话存储设置一个值。
使用Javascript:
$.sessionStorage( 'foo', {data:'bar'} );
检索值:
$.sessionStorage( 'foo', {data:'bar'} );
$.sessionStorage( 'foo' );Results:
{data:'bar'}
本地存储 现在让我们来看看本地存储。让我们假设您有一系列您想要保留的变量。你可以这样做:
var names=[];
names[0]=prompt("New name?");
localStorage['names']=JSON.stringify(names);
//...
var storedNames=JSON.parse(localStorage['names']);
使用ASP.NET的服务器端示例
添加到Sesion
Session["FirstName"] = FirstNameTextBox.Text;
Session["LastName"] = LastNameTextBox.Text;
//从会话状态检索对象时,将其强制转换为 //适当的类型。
ArrayList stockPicks = (ArrayList)Session["StockPicks"];
// Write the modified stock picks list back to session state.
Session["StockPicks"] = stockPicks;
我希望能回答你的问题。
答案 3 :(得分:3)
查看我的js lib进行缓存: https://github.com/hoangnd25/cacheJS
我的博文: New way to cache your data with Javascript
保存缓存:
cacheJS.set({blogId:1,type:'view'},'<h1>Blog 1</h1>');
cacheJS.set({blogId:2,type:'view'},'<h1>Blog 2</h1>', null, {author:'hoangnd'});
cacheJS.set({blogId:3,type:'view'},'<h1>Blog 3</h1>', 3600, {author:'hoangnd',categoryId:2});
检索缓存:
cacheJS.get({blogId: 1,type: 'view'});
刷新缓存
cacheJS.removeByKey({blogId: 1,type: 'view'});
cacheJS.removeByKey({blogId: 2,type: 'view'});
cacheJS.removeByContext({author:'hoangnd'});
切换提供商
cacheJS.use('array');
cacheJS.use('array').set({blogId:1},'<h1>Blog 1</h1>')};
答案 4 :(得分:1)
我已经写了一个通用的caching func()
,它将轻松地缓存任何变量并且可读性强。
缓存功能:
function calculateSomethingMaybe(args){
return args;
}
function caching(fn){
const cache = {};
return function(){
const string = arguments[0];
if(!cache[string]){
const result = fn.apply(this, arguments);
cache[string] = result;
return result;
}
return cache[string];
}
}
const letsCache = caching(calculateSomethingMaybe);
console.log(letsCache('a book'), letsCache('a pen'), letsCache('a book'));