发布于 2015-02-27 00:58:53 | 227 次阅读 | 评论: 0 | 来源: 网友投递
RegularJS JavaScript MVC 框架
regularjs是一个基于字符串模板的用于创建数据驱动的组件的类库, 相较于其它同类的基于字符串的模板引擎比如(mustache), regularjs在compile之后数据和dom仍然保持联系, 所以也称之为'live template engine'.
RegularJS v0.3.1 发布,此版本更新内容如下:
add $outer
property to make transcluded component easily, see demo like tab-pane. see issues at #26
r-animation: command on now bind component event when the particular event is not a dom event. see testcase for detail
fix some bug
此版本现已提供下载:https://github.com/regularjs/regular/archive/0.3.1.zip。
RegularJS 在实现上采取了angular的数据更新策略(但是提取了表达式的依赖关系以便在Object.observe正式到来时切换到脏检 查+observe的形式)提倡极致的声明式和裸数据操作, 依赖于基于字符串的模板描述结构结合更规范性的类式继承的组件体系来定义数据层的业务逻辑.
regularjs是一个基于字符串模板的用于创建数据驱动的组件的类库, 相较于其它同类的基于字符串的模板引擎比如(mustache), regularjs在compile之后数据和dom仍然保持联系, 所以也称之为'live template engine'.
这也是框架取名 regular = react(ractive) + angular的由来