E11000 duplicate key error collection
const CommentsSchema = new Schema({
userId: { type: Schema.Types.ObjectId, ref: 'User', require: true },
articleId: { type: Schema.Types.ObjectId, ref: 'Article', require: true },
content: { type: String, require: true },
created_at: { type: Date, default: Date.now },
thumbsUp: [{ type: Schema.Types.ObjectId, ref: 'User' }],
thumbsDown: [{ type: Schema.Types.ObjectId, ref: 'User' }]
})
commentModel = {
userId: ctx.session.user._id || ctx.request.body.userId,
articleId: articleId,
content: content
};
Comments.create(commentModel)
第二次插入数据的时候报错
name: 'MongoError',
message: 'E11000 duplicate key error collection: myblog.comments index: thumbsUp_1 dup key: { : undefined }',
driver: true,
code: 11000,
index: 0,
errmsg: 'E11000 duplicate key error collection: myblog.comments index: thumbsUp_1 dup key: { : undefined }',
getOperation: [Function],
toJSON: [Function],
toString: [Function] }
请问该如何解决
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论