admin管理员组文章数量:1341739
JSON.stringify() works on literal objects, such as:
var myObjectLiteral = {
a : "1a",
b : "1b",
c : 100,
d : {
da : "1da",
dc : 200
}
};
var myObjectLiteralSerialized = JSON.stringify(myObjectLiteral);
myObjectLiteralSerialized is assigned, "{"a":"1a","b":"1b","c":100,"d":{"da":"1da","dc":200}}" as expected.
But, if I define the class with a ctor like this,
function MyClass() {
var a = "1a";
var b = "1b";
var c = 100;
var d = {
da : "1da",
dc : 200
};
};
var myObject = new MyClass;
var myObjectSerialized = JSON.stringify(myObject);
then myObjectSerialized is set to the empty string, "".
I think the reason is because the class version ends up being the prototype of the instantiated class which makes it's properties "owned" by the prototype and JSON will only stringify props owned by the instance object, myObject.
Is there a simple way to get my classes into JSON strings w/o writing a bunch of custom code?
JSON.stringify() works on literal objects, such as:
var myObjectLiteral = {
a : "1a",
b : "1b",
c : 100,
d : {
da : "1da",
dc : 200
}
};
var myObjectLiteralSerialized = JSON.stringify(myObjectLiteral);
myObjectLiteralSerialized is assigned, "{"a":"1a","b":"1b","c":100,"d":{"da":"1da","dc":200}}" as expected.
But, if I define the class with a ctor like this,
function MyClass() {
var a = "1a";
var b = "1b";
var c = 100;
var d = {
da : "1da",
dc : 200
};
};
var myObject = new MyClass;
var myObjectSerialized = JSON.stringify(myObject);
then myObjectSerialized is set to the empty string, "".
I think the reason is because the class version ends up being the prototype of the instantiated class which makes it's properties "owned" by the prototype and JSON will only stringify props owned by the instance object, myObject.
Is there a simple way to get my classes into JSON strings w/o writing a bunch of custom code?
Share Improve this question edited Sep 9, 2011 at 3:12 Tom Jones asked Sep 9, 2011 at 2:59 Tom JonesTom Jones 1411 gold badge1 silver badge5 bronze badges 2- 1 Those are not properties, but local variables. – Leonid Commented Sep 9, 2011 at 3:03
- 1 Also, function declarations don't have trailing semi-colons. – kinakuta Commented Sep 9, 2011 at 3:10
1 Answer
Reset to default 13Your MyClass
isn't setting any properties on the object being constructed. It's just creating local variables to the constructor.
To create properties, set properties on this
in the constructor, since this
references the new object:
function MyClass() {
this.a = "1a";
this.b = "1b";
this.c = 100;
this.d = {
da : "1da",
dc : 200
};
}
Also, you typically wouldn't add properties to the .prototype
object inside the constructor. They only need to be added once, and will be shared among objects created from the constructor.
function MyClass() {
this.a = "1a";
this.b = "1b";
this.c = 100;
this.d = {
da : "1da",
dc : 200
};
}
MyClass.prototype.toJSON = function() {
return; // ???
}
MyClass.prototype.equals = function(other) {
if(other != null && other.prototype == this) {
if(this.a == other.a
&& this.b == other.b
&& this.c == other.c
&& this.d.da == other.d.da
&& this.d.dc == other.d.dc)
return true;
}
return false;
}
本文标签: How to JSONstringify a userdefined class in JavascriptStack Overflow
版权声明:本文标题:How to JSON.stringify a user-defined class in Javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743628047a2512627.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论