JS的MVC框架 Agility.js
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://agilityjs.com/
- 软件文档: http://agilityjs.com/docs.html
软件介绍
Agility.js 是个MVC library for Javascript,可使你写可维护性和再利用的浏览器代码,目的是能够让开发者利用jQuery快速写出web应用。
示例代码:
// Hello World
var message = $$({
model: {},
view: {
format: '<div>Hello World</div>'
},
controller: {}
});
$$.document.append(message);
