这是一个示例函数:
function processFanGrowth() {
console.log('fanGrowth');
}
和一个对象"数据"它有一个属性名称" FanGrowth"
for(var property in data) {
// here i'm trying to generate the function name.
funcName = "process" + property;
funcName();
}
我收到此错误:未捕获TypeError:字符串不是函数
答案 0 :(得分:5)
您可以将该函数作为其定义范围的对象的属性调用,例如,对于在全局范围内定义的函数:
window['process' + property]();
答案 1 :(得分:0)
此语法应该有效:
window["functionName"](arguments);
在你的情况下:
for(var property in data) {
// here i'm trying to generate the function name.
funcName = "process" + property;
window["functionName"]();
}