如何设置JavaScript对象的类

时间:2013-01-11 21:17:53

标签: javascript

我考虑使用JSON.stringify保存对象,然后再次加载它们。 “stringification”当然很有效,但是我不确定如何设置对象的原型/类。

1 个答案:

答案 0 :(得分:1)

您可以使用.toJSON并重新启动回调来实现此目标。

这是方案:

function Person() {
    this.name = "name";
    this.age = "age";
}

Person.prototype.toJSON = function() {
            //Define this for other classes as well
    return {__class__: "Person", name: this.name, age: this.age};
};

function reviver( key, value ) {
        if( typeof value == "object" && value.__class__ ) {
            var ret = new window[value.__class__];
            for( var k in value ) {
                if( k === "__class__" ) continue;
                ret[k] = value[k];
            }
            return ret;
        }
        return value;
}

var a = new Person(),
    b = new Person();

var json = JSON.stringify( [a,b] );

var decoded = JSON.parse( json, reviver);

console.log( decoded ); //[Person, Person] I.E. array of Person instances instead of plain objects

在这个简化的方案中,该类必须是全局的。