我正在尝试将 KineticJS 对象(添加一个属性)序列化为 JSON,但如果我调用JSON.stringify(test);
,它只返回 KineticJS 对象的 JSON 表示,而没有我添加的属性。有谁知道,请问哪里有问题?
test = new Kinetic.Line(
{
points : [ 29, 30, 31, 32 ],
stroke : 'black',
strokeWidth : 2,
lineJoin : 'round',
id : '#line'
});
test.obj = "my own property";
JSON.stringify(test);
返回
{"attrs":{"points":[{"x":29,"y":30},{"x":31,"y":32}],"stroke":"black","strokeWidth":2,"lineJoin":"round","id":"#line"},
"nodeType":"Shape","shapeType":"Line"}"
但我还需要有关 test.obj 的信息。