在特定字段内推送数据

Posted

技术标签:

【中文标题】在特定字段内推送数据【英文标题】:Push data inside specific field 【发布时间】:2021-05-11 07:54:30 【问题描述】:

谁能告诉我如何在组内推送数据?

产品架构

    const productSchema = new mongoose.Schema(
    name:
        type:String
    ,
    user:[ 
        author:
            type: mongoose.Schema.Types.ObjectId,
            ref: 'user'
        
    ],
    group:[
        group:
        type: mongoose.Schema.Types.ObjectId,
        ref: 'group',
        item:
            type: mongoose.Schema.Types.ObjectId,
            ref: 'item',
        
    
    ],
    price:
        type:number
    ,

);

productSchema.pre<IProduct>(/^find/, function(next) 
    this.populate(
          path: 'user.author',
          select: 'fullName email'
        );
        next();
      );

productSchema.pre<IProductSchema>(/^find/, function(next) 
    this.populate(
        path: 'group.group',
        select: '-__v'
        )
        next();
    );
 productSchema.pre<IProductSchema>(/^find/, function(next) 
        this.populate(
            path: 'group.group.item',
            select: '-__v -group'
        )
            next();
);

我成功填充了 group.group 但在 group.group.item 我无法推送数据,这是我的推送代码。

        const updateProduct = await PRODUCT.findByIdAndUpdate(req.params.id,  
        $push: 
          group:  group: req.params.groupId
        
        
    );
    const query = await Item.find().where(`group`).equals(req.params.groupId).select('-group id');
 query.forEach(async element => 
        const updateProduct = await PRODUCT.findByIdAndUpdate(req.params.id,  
            $push: 
                group: "group.item": 'element._id'
            
            
        );
    );

我花了最后几个小时试图找到解决方案,但不幸的是我无法找到它。希望有人能帮助我。

祝你有美好的一天!

【问题讨论】:

【参考方案1】:

基于$pushdocumentation

$push 运算符将指定的值附加到数组中

在模式项中是一个对象,如果你想推送一个值,试试这样

item:[
  type: mongoose.Schema.Types.ObjectId,
  ref: 'item',
]

如果您不想根据以下代码将项目的类型更改为array,请找到带有_idgroup._id 的文档,然后像这样更新项目

await PRODUCT.findOneAndUpdate(
  
    _id: req.params.id,
    'group._id': groupId,
  ,
  
    "group.$.item" : "the ID"
  
);

如果你改变了项目的类型

await PRODUCT.findOneAndUpdate(
  
    _id: req.params.id,
    'group._id': groupId,
  ,
  $push:
    "group.$.item" : element._id
  
);

【讨论】:

我更改了架构但仍然无法推送它 要推入父组吗?? 是的,这就是我想要的

以上是关于在特定字段内推送数据的主要内容,如果未能解决你的问题,请参考以下文章

SQL一字段内的字符串按照特定字符串转化为多行显示

在 postgres 中,如何从事件日志类型表(具有时间戳)中获取特定时间范围内字段的总和(或汇总)

当汽车到达特定半径时如何发送推送通知

sql 替换 两特定字符(含特定字符)之间的字段

如何求和具有特定查找字段值的记录数

使用 Firebase/Batch 向特定登录用户推送通知