0

在加载页面时,我需要检查是否存在来自 Javascript 的会话变量。我尝试了以下代码。但它给出了一个错误,说会话未定义。

Json=// i have hardcoded value here
Session("hai") =  "";
Session.set("hai",json);


if (( typeof session.get("hai") == 'undefined' && ((session.get("hai") == null)||(session.get("hai") == "") ) ){

}
4

1 回答 1

1

如果你想在页面请求之间存储一些东西,你可以使用本地存储,或者会话存储。

localStorage.hai = json; // persistent across multiple sessions
sessionStorage.hai = json; // persistent in current session

不过,这与服务器端会话无关。目前尚不清楚您的要求是什么,因此不确定这是否适合您。

这是有关会话存储的更多信息的链接:http ://www.nczonline.net/blog/2009/07/21/introduction-to-sessionstorage/

于 2012-11-26T10:46:16.710 回答