我有以下代码。
let root=ob[str].root;//ob is an JSON object.
console.log(array);
this.maping(array,str); // it is react function.
this.number = ++number;
ob[str].children.push(object);
this.modified_keys[ob[str].name] = clone(ob[str]);//clone is npm module.
但问题是我在Chrome中运行时出现以下错误
TypeError:Illegal invocation..clone
我无法执行该克隆。在我将 this.maping(array,str)放在此代码所在的同一位置之前,它已成功运行,但现在当我移动该函数时,它给了我这个错误。