Rhino JavaScript 引擎是否有适用于 .NET 的端口

发布于 2024-07-11 03:03:10 字数 316 浏览 10 评论 0原文

我在一家同时拥有 Java 和 .NET 实现应用程序的公司工作。 该应用程序允许最终用户使用脚本自定义处理和业务规则。 Java 版本使用 Rhino 引擎 支持 JavaScript。 .NET 应用程序需要 VBScript。 我想使用 .NET 做类似的事情,但我更喜欢使用 JavaScript。 我进行了搜索,但很难找到像 Rhino 这样可以在 .NET 运行时运行的东西。 你们中有人知道或有在 .NET 中使用 JavaScript 引擎的经验吗?

I worked for a company that had both Java and .NET implementations of an application. The app allowed for end-user customization of processing and business rules using scripts. The Java version supported JavaScript using the Rhino engine. The .NET app required VBScript. I would like to do something similar using .NET, but I would prefer to use JavaScript. I have searched but I am having a hard time finding anything like Rhino that will work within the .NET runtime. Do any of you know of or have experience using a JavaScript engine in .NET?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

讽刺将军 2024-07-18 03:03:10

您可以通过 IKVM.NET 在 .NET 上使用 Rhino。 我做过一次,非常简单; 您下载 jar 文件并使用 IKVM.NET 生成 dll。 然后像往常一样引用 dll。

你应该检查一下 Iron JS。 它是在 DLR 上运行的完全 .NET 解决方案。

V8 也应该可以正常工作: http://javascriptdotnet.codeplex.com/

You can use Rhino on .NET with IKVM.NET. I did it once it was very simple; you download the jar files and you generate dlls using IKVM.NET. Then you reference the dlls as usual.

You should check Iron JS. It is a fully .NET solution running on the DLR.

V8 should work ok as well: http://javascriptdotnet.codeplex.com/

做个少女永远怀春 2024-07-18 03:03:10

您可能应该使用 JScript - Microsoft 的 JavaScript 实现,它是完整的.NET语言。

编辑:事实证明问题是重复。 一些具体建议:使用 托管 JScript,或者在 JScript 模式下使用 MSScriptControl.ScriptControlClass

You should probably use JScript - Microsoft's implementation of JavaScript, which is a full .NET language.

EDIT: it turns out the question is a duplicate. Some specific suggestions: use Managed JScript, or use MSScriptControl.ScriptControlClass in JScript mode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文