收藏
回答

对数据库push,这种格式为什么会不对?

    db.collection('users').where({
      _id:this.data._id
    }).update({
      data:{
        collection:_.push({
          _id:0,
                    name:'zs'
        }),
        success:res=>{
          console.log('已成功添加到收藏夹')
        }
      }
    })


回答关注问题邀请回答
收藏

1 个回答

  • 风华漫舞
    风华漫舞
    2022-08-20

    已解决

        db.collection('users').where({
          _id:this.data._id
        }).update({
          data:{
            collection:_.push({
              each:[{
                          _id:0,
                          name:'zs'
                         }]
                }),
                success:res=>{
              console.log('已成功添加到收藏夹')
            }
          }
        })
    
    2022-08-20
    有用 1
    回复
登录 后发表内容