1

我最近一直在做一个爱好项目,我遇到了一个我似乎无法弄清楚的问题,即使在网上搜索了答案之后也是如此。我在带有 MongoDB 的 c9.io 上使用 Node.js。每当我尝试在数据库中创建一个新条目时,第一个条目都可以正常工作并且可以正常运行,但是第二个条目会导致错误。

E11000 重复键错误集合:project.tasks 索引:username_1 重复键:{:null }'

我的架构:

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

var taskSchema = new mongoose.Schema({
    task: String,
    region: String,
    cost: String,
    when: String,
    isAccepted: Boolean,
    author: {
        id:{
            type: mongoose.Schema.Types.ObjectId, 
            ref: "User"
        }
    },
    tasker: {
        id : { 
          type: mongoose.Schema.Types.ObjectId,
          ref: "User"
        }
    }
}); 

taskSchema.plugin(passportLocalMongoose);
module.exports = mongoose.model("Task", taskSchema);

我的帖子请求:

app.post("/taskers/index/show", function(req, res){
   var task = req.body.task;
   var newTask = {
      task: task.task, 
      region: task.region, 
      cost: task.cost, 
      when: task.when, 
      isAccepted: false, 
      author: req.user._id, 
      tasker: req.user._id
   };
   console.log("STSOTSOTSOTOOPP");
   Task.create(newTask, function(err, newlyCreated){
      if(err){
         console.log(err);
      } else {
         console.log(newlyCreated);
         res.redirect("/users/index");
      }
   });
});

如果有人知道我做错了什么或者可以引导我找到解决方案,那将是惊人的,因为我已经坚持了一段时间。

4

1 回答 1

1

E11000 duplicate key error collection: project.tasks index: username_1 dup key: { : null }

此错误来自 mongo(不是来自 mongoose)。从 mongoose 模式中删除索引不会对基础集合产生任何影响,因此您现在需要usernametasks集合中删除唯一索引。

这个索引很可能是由我们不再看到的以前的代码创建的(或者可能是这样taskSchema.plugin(passportLocalMongoose);——这听起来有点像那种需要索引的东西username)。

如果您使用 shell 连接到 mongo,您应该运行db.tasks.getIndexes()以查看唯一的用户名索引,然后使用dropIndexCommand删除有问题的索引。

有关 mongoose和 mongo 如何交互的更多详细信息,请参阅mongodb mongoose 中的 E11000 重复键错误索引。

于 2019-03-01T04:33:43.080 回答