我连接mongodb一直报这个错误,,不知道啥意思
(node:24276) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2): CastError: Cast to ObjectId failed for value "53" at path "_id" for model "User"
是说这个表吗?我代码中有建啊,
module.exports = moogoose.model('User', userSchemas);
根据你的报错来看,你把一个非
ObjectId
的字段当做ObjectId
来使用了(user的_id
)