gpt4 book ai didi

javascript - 防止 Mongoose 中的重复记录

转载 作者:可可西里 更新时间:2023-11-01 10:42:24 29 4
gpt4 key购买 nike

我是 MongoDb/Mongoose 的新手,更习惯使用 SQL Server 或 Oracle。

我有一个相当简单的事件架构。

EventSchema.add({
pkey: { type: String, unique: true },
device: { type: String, required: true },
name: { type: String, required: true },
owner: { type: String, required: true },
description: { type: String, required: true },
});

我在看 Mongoose Indexes这显示了两种实现方式,我使用了字段定义。

我还有一个非常简单的 API,它接受 POST 并在此集合上调用创建以插入记录。

我编写了一个测试来检查插入具有相同 pkey 的记录不应该发生并且 unique:true 正在运行。我已经将一组事件读入数组,所以我只是再次发布这些事件中的第一个,看看会发生什么,我预计 mongo DB 会抛出 E11000 重复键错误,但这并没有发生。

var url = 'api/events';
var evt = JSON.parse(JSON.stringify(events[0]));

// POST'ed new record won't have an _id yet
delete evt._id;

api.post(url)
.send(evt)
.end(err, res) {
err.should.exist;
err.code.should.equal(11000);
});

测试失败,没有错误,插入了重复的记录。

当我查看集合时,我可以看到两条记录,它们都具有相同的 pkey(原始记录和我为测试发布的副本)。我确实注意到第二条记录的创建日期与第一条记录的创建日期相同,但修改日期晚了。

(mongo是不是希望我使用最新的修改版本记录???,url不一样,id也不一样)

[ { _id: 2,
pkey: '6fea271282eb01467020ce70b5775319',
name: 'Event name 01',
owner: 'Test Owner',
device: 'Device X',
description: 'I have no idea what\'s happening',
__v: 0,
url: '/api/events/2',
modified: '2016-03-23T07:31:18.529Z',
created: '2016-03-23T07:31:18.470Z' },
{ _id: 1,
pkey: '6fea271282eb01467020ce70b5775319',
name: 'Event name 01',
owner: 'Test Owner',
device: 'Device X',
description: 'I have no idea what\'s happening',
__v: 0,
url: '/api/events/1',
modified: '2016-03-23T07:31:18.470Z',
created: '2016-03-23T07:31:18.470Z' }
]

我假设 unique: true 在字段定义上告诉 mongo db 这就是你想要的,mongo 在保存时为你强制执行,或者我可能只是误解了一些东西......

在 SQL 术语中,您创建一个可用于 URL 查找的键,但您可以构建一个唯一的复合索引,以防止重复插入。我需要能够定义事件中的哪些字段使记录唯一,因为在表单数据 POST 上,表单的提交者没有下一个可用的 _id 值,但使用 _id(由“mongoose-auto-increment”完成) 以便在应用的其他部分使用 URL 是干净的,例如

/events/1

而不是一团乱七八糟的复合值,比如

/events/Event%20name%2001%5fDevice%20X%5fTest%20Owner

我正要开始编写代码,所以现在我只是针对这个单个字符串编写了一个简单的测试,但真正的模式有更多的字段,并将使用它们的组合来实现唯一性,我真的很想在我开始添加更多测试、更多字段和更多代码之前让初始测试工作。

我应该做些什么来确保实际上没有插入第二条记录?

最佳答案

在数据库中插入一些记录后,您似乎已经完成了唯一索引(在模式级别)。

请按照以下步骤避免重复 -

1) 删除你的数据库:

$ 蒙戈

> use <db-name>;

> db.dropDatabase();

2) 现在在模式级或数据库级做索引

 var EventSchema = new mongoose.Schema({
pkey: { type: String, unique: true },
device: { type: String, required: true },
name: { type: String, required: true },
owner: { type: String, required: true },
description: { type: String, required: true },
});

它将避免重复插入具有相同 pKey 值的记录。

为了确保索引,使用命令db.db_name.getIndexes()

希望对你有所帮助。谢谢

关于javascript - 防止 Mongoose 中的重复记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36172891/

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