我的经验很低-我试图给物体拉线。它返回了“期望的数组找到对象”类型的错误。
我试图通过缩减对象创建功能并重新测试来跟踪问题。
一切正常,直到我到达将子代添加到现有Container对象的那一行。容器以前已将ok字符串化,孩子也是如此,但是在将孩子添加到容器后,返回的jsonObj为'undefined'。
有什么想法吗?这应该有用吗?还是会期望出现问题?
我正在使用最小的0.8.1
<!DOCTYPE html>
html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo JSON Prob</title>
<script src="easeljs-0.8.1.min.js"></script>
<script>
var dummy;
var aShape =new createjs.Shape();
//jsonObjShape = JSON.stringify(aShape);
var aContainer = new createjs.Container();
// jsonObjContainer = JSON.stringify(aContainer);
aContainer.addChild(aShape);
jsonObjContainerWithChild = JSON.stringify(aContainer);
dummy =0; //put debugger breakpoint here
</script>
</head>
<body>
</body>
</html>