使用koa-router管理路由的时候,想在收到表单post请求后redirect到别的路由,但是使用this.redirect和router.redirect都无法跳转。请问正确的写法是什么无效的代码:
router.post('/login', bodyParser, function* (next) { // ... this.redirect('/index'); });
aluckdog
相关分类