javascript - koa-router 接受post请求如何让页面跳转
怪我咯
怪我咯 2017-04-11 12:36:57
0
1
533

使用koa-router管理路由的时候,想在收到表单post请求后redirect到别的路由,但是使用this.redirect和router.redirect都无法跳转。请问正确的写法是什么
无效的代码:

router.post('/login', bodyParser, function* (next) {
  // ...
  this.redirect('/index');
});
怪我咯
怪我咯

走同样的路,发现不同的人生

reply all(1)
PHPzhong
router.get('user', '/users/:id', function *(next) {
 // ...
});

router.url('user', 3);
// => "/users/3"

koa-router 文档里写的方法,类似的还有 router.redirect

你也可以直接写进 this 里面,来符合你的习惯

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template