thinkjs/lib/Tpl/IndexController.class.js
2013-11-17 15:56:53 +08:00

15 lines
328 B
JavaScript

/**
* controller
* @return
*/
module.exports = Controller(function(){
return {
/*init: function(http){
this.super("init", http);
}*/
indexAction: function(){
this.end("hello, thinkjs!");
//this.display(); //render Home/index_index.html file
}
}
});