Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
router.post('/registration', function* (next) { var ctx = this; models.users.create({ email: this.request.body.email }).then(function() { ctx.redirect('/'); }); })
Error: Can't set headers after they are sent.
router.post('/registration', function* (next) { var ctx = this; yield models.users.create({ email: this.request.body.email }).then(function() { ctx.redirect('/'); }); })