gpt4 book ai didi

angularjs - Mongo Giving 'duplicate key error' 在非唯一字段上

转载 作者:IT老高 更新时间:2023-10-28 13:32:04 26 4
gpt4 key购买 nike

尝试插入子文档时出现 MongoDB 错误。子文档已经具有唯一的 _id,但是对于我不希望唯一的不同的非唯一字段会引发错误。

Angular 中的错误是:“Assets.serial 已经存在”。 如何使此字段包含重复值,以及是什么导致模型假定它应该是唯一的?

这是我的 Mongoose 模型:

'use strict';

var mongoose = require('mongoose'),
Schema = mongoose.Schema;
var AssetUrlSchema = new Schema({
name: {
type: String,
unique: false,
default: '',
trim: true
},
url: {
type: String,
unique: false,
default: 'http://placehold.it/75x75',
trim: true
},
}),

AssetSchema = new Schema({
serial: {
type: Number,
unique: false
},
urls: {
type: [AssetUrlSchema],
unique: false,
default: [
{ name: '', url: 'http://placehold.it/75x75' },
{ name: '', url: 'http://placehold.it/75x75' }
]
}
}),

/**
* Item Schema
*/
ItemSchema = new Schema({
name: {
type: String,
default: '',
required: 'Please enter name',
trim: true
},

assets: {
type: [AssetSchema],
default: [],
unique: false
},

property: {
type: Schema.ObjectId,
zd: 'Please select a property',
ref: 'Property'
},

created: {
type: Date,
default: Date.now
},

user: {
type: Schema.ObjectId,
ref: 'User'
}
});

mongoose.model('Item', ItemSchema);

这是我的“保存”方法:

function(){
var i = 0, assets = [];

for (;i < 24;i++) {
assets.push({
serial: 1000+i,
urls: {
name: 'Asset Name ' + i,
url: 'http://placehold.it/75x75?'
}
});
}

item = new Items ({
name: 'FPO',
property: newPropId,
assets: assets
});

return item.$save(
function(response){ return response; },
function(errorResponse) {
$scope.error = errorResponse.data.message;
}
);
}

我第一次插入文档时,它工作正常。任何后续时间,它都会以 400 失败,因为 assets.serial 字段不是唯一的。但是,我专门将该字段标记为 unique:false。

模式控制台中的错误是:

{ [MongoError: insertDocument :: caused by :: 11000 E11000 duplicate key error index: mean-dev.items.$assets.serial_1  dup key: { : 1000 }]
name: 'MongoError',
code: 11000,
err: 'insertDocument :: caused by :: 11000 E11000 duplicate key error index: mean-dev.items.$assets.serial_1 dup key: { : 1000 }' }
POST /api/items 400 14.347 ms - 41

最佳答案

Mongoose 不会删除现有索引,因此您需要显式删除索引以摆脱它。在外壳中:

> db.items.dropIndex('assets.serial_1')

如果您最初定义该字段 unique: true 但后来将其从架构定义中删除或将其更改为 unique: false,则会发生这种情况。

关于angularjs - Mongo Giving 'duplicate key error' 在非唯一字段上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28774947/

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