我想知道是否可以在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`