0

我正在尝试将 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 的信息。

4

1 回答 1

2

你可以这样做:

var test = new Object();

test.kinetic = new Kinetic.Line(
                {
                    points : [ 29, 30, 31, 32 ],
                    stroke : 'black',
                    strokeWidth : 2,
                    lineJoin : 'round',
                    id : '#line'
                });
 test.obj = "my own property";
 console.log(JSON.stringify(test));
于 2013-05-20T14:43:32.510 回答