プロトタイプ オブジェクトに次の関数があります。
EmptyChild:function(node)
{
if (Array.isArray(node.children)) {
node.children = node.children.filter(
function(child) {
if (child['id'] =="" || child.length) {
return false;
} else {
this.EmptyChild(child);
return true;
}
}
);
}
}
しかし、私は次のエラーが発生します:
Uncaught TypeError: Object [object global] has no method 'EmptyChild'
この問題を解決するにはどうすればよいですか?