发送发帖请求后出现以下错误 我已经验证了提交的字段。 GET方法可以正常工作,但是在尝试POST时抛出错误
这是我的模式
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