43

没有 jQuery。

我想在 cookie 中存储一个对象或数组。

该对象应该在页面刷新后可用。

我如何使用纯 JavaScript 做到这一点?我阅读了很多帖子,但不知道如何正确序列化。


编辑:代码:

var instances = {};
...
instances[strInstanceId] = { container: oContainer };
...
instances[strInstanceId].plugin = oPlugin;
...
JSON.stringify(instances); 
// throws error 'TypeError: Converting circular structure to JSON'
  1. 如何序列化instances

  2. 如何维护功能,但更改实例结构以能够序列化stringify

4

4 回答 4

74

试试那个写

function bake_cookie(name, value) {
  var cookie = [name, '=', JSON.stringify(value), '; domain=.', window.location.host.toString(), '; path=/;'].join('');
  document.cookie = cookie;
}

阅读它需要:

function read_cookie(name) {
 var result = document.cookie.match(new RegExp(name + '=([^;]+)'));
 result && (result = JSON.parse(result[1]));
 return result;
}

要删除它需要:

function delete_cookie(name) {
  document.cookie = [name, '=; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; domain=.', window.location.host.toString()].join('');
}

要序列化复杂的对象/实例,为什么不在您的实例中编写数据转储函数:

function userConstructor(name, street, city) {
   // ... your code
   this.dumpData = function() {
     return {
        'userConstructorUser': {
            name: this.name,
            street: this.street,
            city: this.city
         }
       }
    }

然后转储数据,将其字符串化,将其写入 cookie,下次您想使用它时,只需执行以下操作:

  var mydata = JSON.parse(read_cookie('myinstances'));
  new userConstructor(mydata.name, mydata.street, mydata.city);
于 2012-07-05T12:47:37.240 回答
6

.toString()如果它提供有意义的序列化,则使用对象自己的方法或JSON.stringify(). 但请注意,cookie 通常长度有限,无法保存大量数据。

于 2012-07-05T12:46:33.543 回答
6

来自: http ://www.sitepoint.com/cookieless-javascript-session-variables/ 的 cookie 适配类

您需要做的就是设置和获取需要存储在 cookie 中的变量。

使用:int、字符串、数组、列表、复杂对象

示例:

var toStore =  Session.get('toStore');

if (toStore == undefined)
    toStore = ['var','var','var','var'];
else
    console.log('Restored from cookies'+toStore);

Session.set('toStore', toStore);

班级:

// Cross reload saving
if (JSON && JSON.stringify && JSON.parse) var Session = Session || (function() {
// session store

var store = load();

function load()
{
    var name = "store";
    var result = document.cookie.match(new RegExp(name + '=([^;]+)'));

    if (result)
        return JSON.parse(result[1]);

    return {};
}

function Save() {
    var date = new Date();
    date.setHours(23,59,59,999);
    var expires = "expires=" + date.toGMTString();
    document.cookie = "store="+JSON.stringify(store)+"; "+expires;
};

// page unload event
if (window.addEventListener) window.addEventListener("unload", Save, false);
else if (window.attachEvent) window.attachEvent("onunload", Save);
else window.onunload = Save;

// public methods
return {

    // set a session variable
    set: function(name, value) {
        store[name] = value;
    },

    // get a session value
    get: function(name) {
        return (store[name] ? store[name] : undefined);
    },

    // clear session
    clear: function() { store = {}; }
};
})();
于 2015-03-27T14:03:56.320 回答
4

如果您可以将对象序列化为其规范的字符串表示形式,并且可以将其从所述字符串表示形式反序列化回其对象形式,那么是的,您可以将其放入 cookie 中。

于 2012-07-05T12:41:22.030 回答