我正在尝试配置猫鼬模式的唯一参数。我需要允许每天写给数据库的唯一作者不超过一位。
Schema.index({author:1,created: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

最佳答案

您可以使用$setOnInsertupsert选项执行更新操作,即,如果带有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选项(当this和upsert为true时,如果创建了新文档,猫鼬将应用在模型架构中指定的默认值):

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/

10-10 00:41