gpt4 book ai didi

MongooseJS 无法禁用唯一字段

转载 作者:行者123 更新时间:2023-12-02 19:59:55 27 4
gpt4 key购买 nike

这是我的 mongoosejs 架构。我将 name unique 设置为 false,但这就是我得到的: MongoError: insertDocument::引起的::11000 E11000 重复键错误索引:testdb1.images.$name_1 dup key: { : "aaa"}

imageSchema = new Schema({
url: {
type: String,
unique: true,
required: true
},

category: {
type: String,
required: true
},

vote: {
type: Number,
required: true
},

name: {
type: String,
unique: false,
required: true
},

voteArray: [],
favorite: false,
tags: []

});

有什么IDE可以解决这个问题吗?建议?

最佳答案

转到数据库(MongoDB)-->集合-->Your_Table-->索引-->右键单击唯一字段-->退出索引-->取消选中唯一字段-->保存

illustration pic

关于MongooseJS 无法禁用唯一字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23695676/

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