1

我正在使用 Garber-Irish 实现(使用打字稿),并且我有以下打字稿代码,我想在其中检查类型是否controller + "Controller"为有效函数。

如果我取消注释评论,那么typeof(controller + "Controller")总是一个字符串(意料之中)。

如果我注释代码并运行它,如果new window[controller + "Controller"]窗口没有有效功能则返回错误,例如 fooController

var util = {
    exec: function (controller: string, action: string) {
        //if (typeof(controller + "Controller") !== 'function') return;

        var ctrlClass = new window[controller + "Controller"];
        if (ctrlClass === undefined) return; //this is most likely redundant

        if (action === undefined)
            ctrlClass.init();
        else {
            if (ctrlClass[action] && typeof ctrlClass[action] == "function") {
                ctrlClass[action]();
            }
        }
    },

    init: function () {
        var body = document.body,
            controller = $("body").data("controller").toLowerCase(),
            action = $("body").data("action").toLowerCase();

        GlobalApp.common.init();
        util.exec(controller);
        util.exec(controller, action);
    }
};

所以我的问题是如何检查一个函数是否存在,如果它由两个字符串组成,例如“home”+“controller”。

4

2 回答 2

1

关于什么

typeof window[controller+"Controller"] === "function"
于 2013-08-31T18:12:31.620 回答
0

使用 typeof,显示我的代码:

class Manage{
  public test(data: any){
    console.log(data)
  }
}

let manage = new Manage();

for(let i in manage){
  if(typeof (manage as any)[i] === 'function'){
    console.log('function')
  }
  else{
    console.log(typeof i) 
  }
}

于 2021-06-15T07:14:59.810 回答