有人做过商业规则引擎的 Javascript 前端吗?
如果是这样,您是否使用了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我理解正确的话,你想使用规则引擎来控制客户端。
TOHU 就是执行此类操作的一个示例。
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.
我正在开发一个使用相当复杂的规则引擎的产品,这样您就可以“插入”一组规则来从根本上改变系统的行为,而无需更改系统代码。
最初我们的规则引擎是基于 .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.