收藏
回答

云开发用set替换更新,数组为什么没有push进去?

const _ = db.command
                db.collection('comment')
                .doc(postId)
                .set({
                    data: {
                        postId: postId,
                        comments: _.push(comment),
                        updateTimenew Date().getTime(),
                        teamMem: teamMem
                    }
                }).then(res => {
                }).catch(err => {
                })

comments怎么没有

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

1 个回答

  • 跨商通
    跨商通
    2023-08-21

    错误的语法。

    set里不支持db.command

    2023-08-21
    有用
    回复 2
    • zrd
      zrd
      2023-08-22
      那请问这里应该怎么push
      2023-08-22
      回复
    • 跨商通
      跨商通
      2023-08-22回复zrd
      可以试试update,反正set不支持。
      2023-08-22
      回复
登录 后发表内容