правильным примером?
router.use('/registration', async (req, res, next) => {
if (!req.body.password || !req.body.username) {
res.json({"response":"failed"})
} else {
next()
}
})
router.get('/registration', (req, res) => {
const user = new User({username:req.body.username,password:req.body.password,avorite:[],earned:0})
user.save()
res.json({"response":"success"})
})
Все чекать в мидлваре, а взаимодействовать с базой уже в роуте?
Нельзя
Обсуждают сегодня