是否可以定义一个评估动态nodejs代码的NodeJs函数?
以下是上下文:
用户创建自定义javascript函数,该函数应返回true / false。
我需要在AWS Lambda容器中“评估”用户代码,该容器在NodeJ上运行。
有可能吗?
我应该使用类似于javascript eval
功能的东西吗?
修改
这是我试过的
'use strict';
exports.handler = (event, context, callback) => {
var body = "function test() { return 10; };";
console.log("body", body);
eval(body);
var result = test();
callback(null, result);
};
我收到一条错误,说“测试”未定义,因此eval
未正确评估。
START RequestId: 6e9abd93-bd69-11e7-a43f-c75328d778e1 Version: $LATEST
2017-10-30T11:56:58.569Z 6e9abd93-bd69-11e7-a43f-c75328d778e1 body function test() { return 10; };
2017-10-30T11:56:58.581Z 6e9abd93-bd69-11e7-a43f-c75328d778e1 ReferenceError: test is not defined
at exports.handler (/var/task/index.js:11:18)
END RequestId: 6e9abd93-bd69-11e7-a43f-c75328d778e1
REPORT RequestId: 6e9abd93-bd69-11e7-a43f-c75328d778e1 Duration: 32.78 ms Billed Duration: 100 ms Memory Size: 128 MB Max Memory Used: 19 MB
RequestId: 6e9abd93-bd69-11e7-a43f-c75328d778e1 Process exited before completing request
答案 0 :(得分:1)
eval在Lambda中运行良好。删除'use strict',它会正常工作,输出10。
严格模式不允许创建全局变量,这就是您收到错误的原因。
第二种选择是明确地将函数添加到全局上下文中:
'use strict';
exports.handler = (event, context, callback) => {
var body = "global.test = function() { return 10; };";
console.log("body", body);
eval(body);
var result = test();
callback(null, result);
};
答案 1 :(得分:0)
Node只是在服务器端执行javascript的运行时。您可以在Node(Lambda)中编写任何有效的Javascript代码。
正如我在代码中看到的那样#eval'是不是执行你可以尝试安装包&nbsp install eval' - https://www.npmjs.com/package/eval