E11000 MongoDB/Mongoose 重复键错误

J.G*_*ble 1 mongoose mongodb node.js

我有一个用户模型架构、一个工作模型架构和一个评论模型架构。这些模式之间的关系是用户可以提交许多作品(如博客文章),并且可以评论/评论(我们称之为批评)其他人的文章(作品)。

因此,当用户提交评论(将其视为评论)时,这就是我的发布路线。我通过 id 找到工作,然后创建一个新的评论模型对象,并将其传递给 .create() mongoose 函数。一切似乎都很顺利,直到我上foundWork.critiques.push(createdCritique)线。控制台记录错误说:

BulkWriteError:E11000 重复键错误集合:zapper.critiques 索引:username_1 dup 键:{:空}

显然,这是说对象中有两个用户名键并且它们相互冲突,但我对此不够熟悉,无法找到问题的根源并在猫鼬模型中修复它。模型如下。如果有人可以提供帮助,那将不胜感激。

// post route for getting the review
router.post('/:id', isLoggedIn, function(req, res) {

    Work.findById(req.params.id, function(err, foundWork) {
        if (err) {
            console.log(err);
        } else {

            // create a new critique
            var newCritique = new Critique ({
                reviewerName: {
                    id: req.user._id,
                    username: req.user.username
                },
                work: {
                    id: foundWork._id,
                    title: foundWork.title
                },
                critique : req.body.critique,
                date: Date.now(),
                rating: 0
            });

            // save new critique to db
            Critique.create(newCritique, function(err, createdCritique) {
                if (err) {
                    console.log(err)
                } else {
                    console.log("Created critique is ");
                    console.log(createdCritique);

                    // push the new critique into array of critiques of the work
                    foundWork.critiques.push(createdCritique);
                    // save to db
                    foundWork.save();                                
                }
            });
        }
    });
Run Code Online (Sandbox Code Playgroud)

用户模型:

var mongoose = require('mongoose');
var passportLocalMongoose = require('passport-local-mongoose');

var UserSchema = new mongoose.Schema({
    firstname: String,
    lastname: String,
    username: String,
    password: String,
    email: String,
    zip: String,
    bio: {
        type: String,
        default: ''
    },
    influences: {
        type: String,
        default: ''
    },
    favBooks: {
        type: String,
        default: ''
    },
    notWriting: {
        type: String,
        default: ''
    },
    favHero: {
        type: String,
        default: ''
    },
    favVillain: {
        type: String,
        default: ''
    },
    works: [
        {
            type: mongoose.Schema.Types.ObjectId,
            ref: 'Work'
        }
    ],
    critiques: [
        {
            type: mongoose.Schema.Types.ObjectId,
            ref: 'Critique'
        }
    ],
    friends: [
        {
            friendId: String,
            friendName  : String,
            friendPic: String
        }
    ],
    friendRequests: [
        {
            sendingFriendId: String,
            sendingFriendName  : String,
            sendingFriendPic: String
        }
    ],
    createdDate: {
        type: Date,
        default: Date.now
    },
    lastLogin: {
        type: Date,
        default: Date.now
    }
});

UserSchema.plugin(passportLocalMongoose);
module.exports = mongoose.model("User", UserSchema);
Run Code Online (Sandbox Code Playgroud)

工作模式:

var mongoose = require('mongoose');

var WorkSchema = new mongoose.Schema({
    title: String,
    genre: String,
    workType: String,
    length: Number,
    ageRange: String,
    author: {
        id: {
            type: mongoose.Schema.Types.ObjectId,
            ref: "User"
        },
        username: String
    },
    manuscriptText: String,
    critiques: [ 
        {
            id: {
                type: mongoose.Schema.Types.ObjectId,
                ref: "Critique"
            }
        }
    ],
    ratingNumber: [Number],
    ratingSum: {
        type: Number,
        default: 0
    },
    date: {
        type: Date,
        default: Date.now
    },
    isPublic: {
        type: Boolean,
        default: true
    }
});


module.exports = mongoose.model("Work", WorkSchema);
Run Code Online (Sandbox Code Playgroud)

批判模型:

var mongoose = require('mongoose');
var passportLocalMongoose = require('passport-local-mongoose');

var CritiqueSchema = new mongoose.Schema({
    reviewerName: {
        id: {
            type: mongoose.Schema.Types.ObjectId,
            ref: "User"
        },
        username: String
    },
    work: {
        id: {
            type: mongoose.Schema.Types.ObjectId,
            ref: "Work"
        },
        title: String
    },
    critique: String,
    date: {
        type: Date,
        default: Date.now
    },
    rating: [Number]
});


CritiqueSchema.plugin(passportLocalMongoose);
module.exports = mongoose.model("Critique", CritiqueSchema);
Run Code Online (Sandbox Code Playgroud)

Ral*_*lph 5

在 MongoDB 中创建唯一索引时,默认行为是它也会索引空值。

这意味着如果您的集合中有一个用户名为 null 的文档,则不能添加另一个用户名为 null 的文档。

您需要的是一个稀疏索引,它只索引实际值(并忽略该字段为 null 的文档)。

检查此链接它显示了如何在猫鼬中创建稀疏索引与“正常”索引(索引:true,vs 备用:true)。大多数时候你会想要稀疏索引。