尝试发布请求时,猫鼬收到验证错误

时间:2020-07-31 11:43:52

标签: node.js mongodb api express mongoose

发送发帖请求后出现以下错误 我已经验证了提交的字段。 GET方法可以正常工作,但是在尝试POST时抛出错误

控制台错误 enter image description here

这是我的模式

const alienShcema = new mongoose.Schema({

    name:
    {
        type: String,
        required: true
    }
 
})

module.exports = mongoose.model('Alien',alienShcema)

这是路由文件

router.post('/', async(req,res) =>{
    const alien = new Alien({
        name: req.body.name
      /*  tech: req.body.tech,
        sub: req.body.sub */
    })

    try{ 
        const  a1 = await alien.save()
        res.json(a1)

    } catch (err){
        console.log(err);
        res.send('Error')
    }
})

module.exports = router

0 个答案:

没有答案