我正在使用https://github.com/gf3/sandbox#readme但我不知道如何通过此沙箱将一些数据从我的代码传递到 javascript 代码。例如
var s = new sandBox();
s.run("(function(name) { return 'Hi there, ' + name + '!'; })('Fabio')", function(output) {
console.log("Example 2: " + output.result + "\n")
})
现在我想将一些数据传递给这个函数我该怎么做?