I do a post ajax request to node with koa-router , and I want to redirect '/' ,but url didn`t change . this is my code :
router.post('/action',function *(next){
//some action
this.redirect('/');
});
my wish is '/login' = > '/' ,but url didn`t change , '/login' => '/login' . this is the result