我试图用变量调用函数。
所以我需要调用函数
fnGetGroups()
在下面的代码中是尝试的内容。
if (data.name == "getChildren"){
var contentType = "fnGet" + data.context.title;
console.log(contentType);
window[contentType](data.context);
}
如果我控制台记录变量:contentType它返回“fnGetGroups”
不在全局范围内定义fnGetGroups()