3

我想知道是否可以在nodejs中运行一个名为字符串的函数。所有这些代码都在服务器端运行,根本没有浏览器外观。

test.js假设我使用以下代码导出文件

module.exports.test = function(x)
{
   console.log(x*5);
}

我能以某种方式做到这一点吗?

main.js

imp = require('test.js');
toExecute = "test";

// somehow call imp.test using toExecute`
4

1 回答 1

7

当然:

imp[toExecute](5);

日志25

于 2012-04-17T02:40:31.753 回答