我想路由多个文件
var routes=require('./routes');
在路线/index.js
exports.inicio=require('./inicio')
exports.home=require('./home')
在 inicio.js
exports.index=function(req,res){res.render('index/index',{title: 'Bienvenido a Inmoweb'});}
在 home.js 中
exports.nosotros=function(req, res){res.render('index/nosotros',{title:'Nosotros'});}
当我 console.log(routes)
{
inicio: {index:[function]},
home: {nosotros:[function]}
}
所以我打电话给应用程序
app.get('/',routes.inicio.index);
但我想这样打电话
app.get('/',routes.index);
app.get('/nosotros',routes.nosotros);
和console.log 假设是????
{
index:[function],
nosotros:[function]
}
怎么做???全部