app.get('/logout',function (req,res){ req.url='/'; console.log('req.url is ' + req.url); req.session.state = null; res.redirect('/login'); });
在重定向时,’url’保持不变.我希望它也能改变它.我尝试使用req.url.但它没有反映在url-bar上.你怎么改变它?
注意: – 我正在使用Angularjs Routing,因此res.redirect不会自动更新url.
编辑:-
角度代码: –
$http({method: 'GET',url: '/logout'}). success(function(data,status,headers,config) { console.log('happened'); }). error(function(data,config) { // called asynchronously if an error occurs // or server returns response with an error status. });