thinkjs/lib/View/IndexController.js
2014-01-26 11:12:16 +08:00

12 lines
218 B
JavaScript

/**
* controller
* @return
*/
module.exports = Controller(function(){
return {
indexAction: function(){
//render View/Home/index_index.html file
this.display();
}
}
});