有人做过商业规则引擎的 Javascript 前端吗?

发布于 2024-10-21 08:12:16 字数 88 浏览 10 评论 0原文

如果是这样,您是否使用了 JS 模板框架(如 Mustache 或 Jade)和 CSS 预处理器(如 LESS 或 Stylus),还是让 BRE 处理这一切?

If so, did you use a JS templating framework (like Moustache or Jade) and CSS preprocessor (like LESS or Stylus) or let the BRE handle it all?

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

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

发布评论

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

评论(2

梦行七里 2024-10-28 08:12:17

如果我理解正确的话,你想使用规则引擎来控制客户端。
TOHU 就是执行此类操作的一个示例。

Tohu 是一个基于 Drools 构建的引擎,用于创建动态 UI。它是传统 MVC 方法的替代方案,传统 MVC 方法使用通用 UI 层来呈现使用简单业务规则定义的任意 UI。

If I understood correctly you want to use the rules engine to control the client side.
One example that does something like this is TOHU.

Tohu is an engine built on Drools to create dynamic UIs. It is an alternative to the traditional MVC approach which instead uses a generic UI layer to render arbitrary UIs defined using simple business rules.

唠甜嗑 2024-10-28 08:12:17

我正在开发一个使用相当复杂的规则引擎的产品,这样您就可以“插入”一组规则来从根本上改变系统的行为,而无需更改系统代码。

最初我们的规则引擎是基于 .NET 的,但我们现在正在考虑迁移到 JS 规则引擎,以便我们可以同时执行客户端和服务器端。然后我们可以使用handlebars来保持视图与js模型同步,并将规则绑定到模型事件。

当然,您需要仔细检查服务器端是否遵守了客户端上执行的规则,因此您可以在服务器端执行相同的代码进行验证。

I am working on a product that uses a quite sophisticated rule engine, so that you can "drop in" a set of rules to radically change the behavior of the system without having to change the system code.

Initially our rule engine was .NET based, but we are now considering migrating to a JS rule engine so that we can execute both client and server side. Then we can use handlebars to keep the view in sync with the js model and bind the rules to model events.

Of course you'll want to double check server side that the rules executed on the client have been adhered to, so you can execute the same code server side to verify.

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