Rhino 有预加载脚本吗?
我目前正在开发一些JavaScript软件,经常需要在Rhino中加载它。有没有办法创建一个 bash 脚本或其他东西,让 Rhino 在启动时加载我的软件?
目前,每次我想以交互方式测试某些内容时,我都必须输入 load("path/to/file.js")
,但我不愿意。
I am currently developing some JavaScript software and often have to load it up in Rhino. Is there a way I can create a bash script or something to have Rhino load up my software when it launches?
Currently, I have to type load("path/to/file.js")
every time I want to test something interactively, and I'd rather not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 JDK 中的
jrunscript.exe
,您应该能够在交互模式启动之前指定要评估的文件,如下所示:现在交互模式应该在已加载的
的上下文中启动>file1.js
和file2.js
。If you use the
jrunscript.exe
from your JDK you should be able to specify the files to evaluate before the interactive mode starts, like so:Now the interactive mode should start in the context of a loaded
file1.js
andfile2.js
.