mongoerror:e11000重复密钥错误集合:workflow.compnies索引:username_1 dup key:{username:null}

neskvpey  于 2021-10-10  发布在  Java
关注(0)|答案(1)|浏览(263)

这类问题已经问过很多次了,我试过了每一个答案。在大多数情况下,答案类似于删除mongo自动创建的用户索引。我做了太多次了。但每次我在服务器上发出请求时,它都会被再次创建(索引)。当我写作时 db.compnies.getIndexes() 1.我明白了

[
        {
                "v" : 2,
                "key" : {
                        "_id" : 1
                },
                "name" : "_id_"
        },
        {
                "v" : 2,
                "unique" : true,
                "key" : {
                        "username" : 1
                },
                "name" : "username_1",
                "background" : true
        }
]

被删除后 db.compnies.dropIndexes({"username":1}) 1.我明白了 [ { "v" : 2, "key" : { "_id" : 1 }, "name" : "_id_" } ] 作为一个 db.compnies.getIndexes() .
在每一个新的请求之后,上述过程都会重复。我在过去两天就面临这个错误。我无法提交我的数据。请帮帮我。非常感谢。
以下是我的用户模型:

const mongoose = require("mongoose");
const passportLocalMongoose = require("passport-local-mongoose");
// const findOrCreate = require('mongoose-findorcreate');

const logoSchema=new mongoose.Schema({
    url:String,
    filename:String
});
const UserSchema = new mongoose.Schema({
    email: {
        type: String,
    },
       username:{
        type:String,
        unique:false
     },
    // password:{
    //     type:String,
    // },
 googleId : {
        type : String, 
    } , 
 name : {
     type : String,
    } ,
 firstName : {
     type : String,
 } ,
 lastName : {
     type : String,
 },
 age:{
     type:String
 },
 compny:{
     type:String
 },
//   logo :[logoSchema],

logo: {
    type: String,
    required: [true, "Uploaded file must have a name"],
  },

 createdAt:{
   type: Date,
   default : Date.now
 }    
});
UserSchema.plugin(passportLocalMongoose);
//  UserSchema.plugin(findOrCreate);

const User = mongoose.model('User', UserSchema);
module.exports = User;

这是我的公司模型:

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

// const ImageSchema = new mongoose.Schema({
//     url: String,
//     filename: String
// });

const compnySchema= new mongoose.Schema({
    name:{
        type:String,
        // required:true
    },
    location:{
        type:String,
        // required:true
    },
    category:{
        type:String,
        // required:true
    },
    about:{
        type:String
    },
      logo: {
        type: String,
        required: [true, "Uploaded file must have a name"],
      },
      count:{
          type:Number
      }
});
compnySchema.plugin(passportLocalMongoose);
const Compny= mongoose.model("Compny", compnySchema);
module.exports=Compny;
hrysbysz

hrysbysz1#

我能重现你的情况。我重新创建了一个节点程序。。。

// npm install mongoose
// npm install passport-local-mongoose

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

mongoose.connect("mongodb://localhost:27017/nodetest", {useNewUrlParser: true, useUnifiedTopology: true});

var db = mongoose.connection;

//Bind connection to error event (to get notification of connection errors)
db.on('error', console.error.bind(console, 'MongoDB connection error:'));

const compnySchema= new mongoose.Schema({
    name:{
        type:String,
        // required:true
    },
    location:{
        type:String,
        // required:true
    },
    category:{
        type:String,
        // required:true
    },
    about:{
        type:String
    },
      logo: {
        type: String,
        required: [true, "Uploaded file must have a name"],
      },
      count:{
          type:Number
      }
});

compnySchema.plugin(passportLocalMongoose);
const Compny= mongoose.model("Compny", compnySchema);
module.exports=Compny;
let compny = new Compny;

compny.name = "some company";
compny.logo = "some logo";

compny.save(function(err) {
    console.log(err);
});

如果我运行这个程序两次,我会得到一个重复的密钥异常。这是因为护照。程序passport正在对字段强制执行唯一索引 username . 但是你没有一个叫做 username . 这意味着第一条记录将为字段添加空值(缺少) username 在文件中。插入的第二个文档的字段值也为空(缺少) username 从而违反了唯一性约束。
如果场地 username 架构中不存在,passport将自动添加唯一索引。但是,如果该字段确实存在于模式中,它将不会为该字段添加索引-unique或not unique。我想,如果字段 username 存在。
忠告:
不要将passport应用于公司集合
在用户集合中使用passport。

相关问题