router.js 262 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 /** * 路由处理文件 * @author: liuyue(yue.liu@yoho.cn) * @date: 2015/10/21 */ var controllerPath = './views/controller/', get = require(controllerPath + 'get'); module.exports = function(app) { app.get('/get', get.index); //获得红包页 };