一般我们都会在路由中这样设置主页 app.get('/’, function(req, res) { res.render('index’, { title: 'Express’, articles:articles }); }); 请问如果不使用模板引擎渲染主页,直接指定index为主页怎么设置呢?谢谢
作者
作者其它话题
一般我们都会在路由中这样设置主页 app.get('/’, function(req, res) { res.render('index’, { title: 'Express’, articles:articles }); }); 请问如果不使用模板引擎渲染主页,直接指定index为主页怎么设置呢?谢谢