gpt4 book ai didi

node.js - Mongoose 每天的独特值(value)

转载 作者:太空宇宙 更新时间:2023-11-04 01:37:13 26 4
gpt4 key购买 nike

我正在尝试配置 Mongoose 模式唯一参数。我需要允许每天写入数据库的唯一作者不超过一位。Schema.index( { 作者: 1, 创建: 1 } , { unique: true} ) 不起作用,这里我无法输入时间段。

有什么更好的方法来判决此案?

const Report = new Schema({
author: {
type: mongoose.Schema.Types.ObjectId,
ref: 'DiscordUserList',
required: true
},
reports: [{ reportNum: { type: Number }, text: { type: String }, date: { type: Date, default: Date.now } }],
questionsDone: [{ questionNum: { type: Number }, done: { type: Boolean }, date: { type: Date, default: Date.now } }],
created: {
type: Date,
default: Date.now
}
}, { strict: false })
Report.plugin(mongoosePaginate)



const reportListSchema = mongoose.model('ReportList', Report)


module.exports = reportListSchema

最佳答案

您可以使用 $setOnInsert 执行更新操作upsert 选项,即如果 update() upsert: true 找到了匹配的文档,然后 MongoDB 执行更新,应用 $set 操作,但忽略 $setOnInsert操作。因此,您的典型更新如下:

import moment from 'moment'

const start = moment().startOf('day').toDate() // set to 12:00 am today
const end = moment().endOf('day').toDate() // set to 23:59 pm today
ReportList.findOneAndUpdate(
{
'author': author_id,
'created': { '$gte': start, '$lte': end }
},
{
'$set': { 'author': author_id },
'$setOnInsert': { 'created': moment().toDate() }
},
{ 'upsert': true, 'new': true },
(err, report) => {
console.log(report)
}
)

或使用setDefaultsOnInsert选项,当此选项和 ​​upsert 为 true 时,如果创建新文档,mongoose 将应用模型架构中指定的默认值:

ReportList.findOneAndUpdate(
{
'author': author_id,
'created': { '$gte': start, '$lte': end }
},
{ '$set': { 'author': author_id } },
{
'upsert': true,
'new': true,
'setDefaultsOnInsert': true
},
(err, report) => {
console.log(report)
}
)

关于node.js - Mongoose 每天的独特值(value),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54171321/

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