热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

MongooseE11000错误:集合中出现重复键问题分析与解决

mongoDB 插入数据时,第一条数据能插入,第二条提示1E11000 duplicate key error collection。怎么解决?user.js123456789101112131415

mongoDB 插入数据时,第一条数据能插入,第二条提示




1
E11000 duplicate key error collection

。怎么解决?

user.js



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const mOngoose= require('mongoose');



const Schema = mongoose.Schema;



// create Comment Schema & model

const UserSchema = new Schema({

    uid: {

        type : Number,

        index: {

            unique: true

        },

    },

    username: {

        type: String,

        required: [true, 'username field is required']

    },

    password: {

        type: String,

        required: [true, 'username field is required']

    },

    headImageUrl: {

        type: String,

    },

    created: {

        type: Date,

        default: Date.now

    },

    admin: {

        type: Boolean,

        default: false

    }





});



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



module.exports = User;

插入数据库部分的代码:

1
2
3
4
5
6
7
8
router.post('/regeist', function (req, res, next) {

    bcrypt.hash(req.body.password, config.saltRounds).then(function (hashPassword) {

        req.body.password = hashPassword;

        User.create(req.body).then(function (echo) {

            res.json(echo);

        }).catch(next);

    });

});

错误信息:

1
WriteError({"code":11000,"index":0,"errmsg":"E11000 duplicate key error collection: video.users index: id_1 dup key: { : null }","op":{"username":"Fcho","password":"$2a$10$0SQsBRvqaRC8JB37dMWEMegGvScsce3YosG9QwoLeL1s0KcQq0HMW","uid":10001,"_id":"5985df9c05e88c2272d79745","admin":false,"created":"2017-08-05T15:09:16.908Z","__v":0}})



   



推荐阅读
author-avatar
最最后的力气撑起最灿烂的微笑
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有