thinkjs/test/App/Lib/Controller/Home/IndexController.js
2014-07-03 13:59:23 +08:00

16 lines
272 B
JavaScript

/**
* controller
* @return
*/
module.exports = Controller(function(){
"use strict";
return {
indexAction: function(){
//render View/Home/index_index.html file
this.display();
},
testAction: function(){
return 'welefen';
}
};
});