JS 的 MVC 框架 Derby.js
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://derbyjs.com/
- 软件文档: http://derbyjs.com/docs
软件介绍
DerbyJS 是一个 MVC 框架,帮助编写实时,交互的应用。可以运行在 Node.js 或者浏览器环境中。
示例代码:
hello.js
var app = module.exports = require('derby').createApp('hello', __filename);
app.loadViews(__dirname);
// the route is being rendered both on server and client side
app.get('/', function(page, model) {
// subscription enables data synchronization
model.subscribe('hello.message', function() {
page.render();
});
});
信息学奥林匹克教程·提高篇
吴耀斌 / 湖南师范大学出版社 / 2003-1 / 24.00元
《信息学奥林匹克教程》(提高篇)既有各个算法设计基本思路的讲解及对求解问题的分析,注重了算法引导分析与不同算法的比较,又给出了具体的编程思路与参考程序,程序采用信息学竞赛流行的Turbo Pascal7.0语言编写,并注重结构化与可读性。一起来看看 《信息学奥林匹克教程·提高篇》 这本书的介绍吧!
