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

8 lines
182 B
JavaScript

module.exports = Controller({
testAction: function(){
return 'test:test'
},
otherAction: function(name, value){
return JSON.stringify({name: name, value: value})
}
})