Rhino:如何从Java调用JS函数
我使用的是 Mozilla Rhino 1.7r2(不是 JDK 版本),我想从 Java 调用 JS 函数。
我的 JS 函数是这样的:
function abc(x,y)
{
return x+y
}
我该怎么做?
编辑:(JS函数位于单独的文件中)
I'm using Mozilla Rhino 1.7r2 (not the JDK version), and I want to call a JS function from Java.
My JS function is like this:
function abc(x,y)
{
return x+y
}
How do I do this?
Edit: (The JS function is in a separate file)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更新:当函数与其他函数和变量一起加载到作用域中时
UPDATE: when the function is loaded in the scope, along with other functions and variables