gpt4 book ai didi

node.js - MongoError : E11000 duplicate key error collection: tracker-db. 用户索引:username_1 dup 键:{用户名:空}”

转载 作者:行者123 更新时间:2023-12-04 12:36:47 29 4
gpt4 key购买 nike

之前回答了一堆类似的问题,但似乎没有一个能解决我的问题。添加第一个用户没问题。但是,用户名不显示记录并在添加第二个用户时出错。

const mongoose = require('mongoose');
const Schema = mongoose.Schema;

const userSchema = new Schema(
{
username: {
type: String,
unique: true,
required: true,
minlength: 3,
},
gender: String,
age: Number
},
{
timestamps: true
}
);

const User = mongoose.model('user', userSchema);
module.exports = User;
The error that I'm getting
The record on adding first user

最佳答案

在 Robo3T 中,我必须查找我的收藏索引,并手动删除用户名索引。

关于node.js - MongoError : E11000 duplicate key error collection: tracker-db. 用户索引:username_1 dup 键:{用户名:空}”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63828277/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com