thinkjs/lib/Tpl/IndexController.class.js
2013-11-14 12:18:16 +08:00

15 lines
318 B
JavaScript

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