我想从变量名调用函数。我的代码位于 react.js
要调用的函数> authentication.signIn()
我的代码如下
var authentication = require('authentication.js');
let controller = "authentication";
let operationId = "signIn";
const data = controller.operationId();
这里controller和operationId是动态的。它们将在下一个循环中改变。 对于下一循环中的示例,operationId的值是signOut,控制器是身份验证。 然后对const数据的函数调用如下
const data = authentication.signOut();
但是错误来了: controller.operationId不是函数。