已关闭,该问题需要details or clarity,目前不接受回答。
**想要改进此问题?**通过editing this post添加详细信息并澄清问题。
昨天关门了。
Improve this question
app.post("/",(req,res)=>{
const user = new model.User({
username:req.body.username,
createAt: new Date()
})
user.save().then((savedUser)=>{
res.status(201).send("Done");
}).catch((error)=>{
res.status(500).send(error);
});
});
TypeError:模型。用户不是构造函数
1条答案
按热度按时间9o685dep1#
假设你想创建一个新用户,试试这个: