发布于 2015-12-20 00:27:26 | 155 次阅读 | 评论: 0 | 来源: 网友投递
这里有新鲜出炉的Mithril.js 中文文档,程序狗速度看过来!
Mithril JavaScript 的 MVC 框架
Mithril.js 是一个客户端的 JavaScript MVC 框架。可将应用分成数据层、UI层和控制层。Mithril 压缩后只有 3kb 左右。API 提供一个模板引擎,带 DOM diff 实现,支持路由和组合。
Mithril 0.2.1 发布,此版本更新内容:
large refactor to take better advantage of Chrome js optimizations and improve source code readability (thanks to @isiahmeadows)
added catch
and finally
to promises
improvements and fixes in the documentation and wiki
m(component, ...args)
can now be used as a shorthand for m.component(component, ...args)
errors thrown from the exception monitor no longer freeze redrawing
fix edge case with falsy keys
fix controller prototype inheritance in component controllers
fix return value of parseQueryString
if input is empty string
下载:https://github.com/lhorie/mithril.js/archive/v0.2.1.zip
Mithril.js 是一个客户端的 JavaScript MVC 框架。可将应用分成数据层、UI层和控制层。Mithril 压缩后只有 3kb 左右。API 提供一个模板引擎,带 DOM diff 实现,支持路由和组合。