如何使用rhino导入其他javascript文件

时间:2011-02-22 10:10:28

标签: javascript rhino

我不能为我的生活弄清楚如何在Rhino下的javascript中导入javascript文件。基本上,我想要做的就是导入“some file.js”并能够使用那里的东西。

我一直在尝试使用Context.currenctContext(compileString和compileReader),但我不明白如何获取相应的Scope并且我不断使用以下代码获取异常“找不到对象的默认值”:

Context.currentContext.compileString("print('something')", "whatever, 0, null).exec(Context.currentContext, null)

如果我无法创建可以在我的javascript程序中重用的模块,这似乎很愚蠢......任何人都知道如何解决这个问题?

1 个答案:

答案 0 :(得分:7)