他使用jade engine
的是我don't want
使用的,而不是使用 Angularjs 模板和路由。
根文件夹是
client > js (contain all js files)
> views > partials > html files
> index.html
在他的代码更改后,我被下面的代码卡住了
我无法发送正确的回复。
如果我res.render('index.html', {layout : null});
在刷新页面时使用比得到错误
错误 :
Error: Cannot find module 'html'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.require (module.js:364:17)
at require (module.js:380:17)
如果我使用res.redirect('/')
比刷新页面总是向我发送 app.js 中定义的根 (/)。
需要:即使我刷新浏览器,我也想发送响应或不在同一页面上。
{
path: '/*',
httpMethod: 'GET',
middleware: [function(req, res) {
var role = userRoles.public, username = '';
if(req.user) {
role = req.user.role;
username = req.user.username;
}
res.cookie('user', JSON.stringify({
'username': username,
'role': role
}));
//res.render('index.html', {layout : null});
//res.redirect('/');
}],
accessLevel: accessLevels.public
}