我想用mongoose的$push去更新model中的数组但是却比预想的多插入了一条数据

发布于 2022-09-11 18:49:26 字数 1291 浏览 12 评论 0

基本是一个评论的功能,回复一个评论后插入一条数据,但是结果却返回了两条

model

const postSchema = new Schema({
  uid: {
    type: String,
    required: true
  },
  author: {
    type: String,
    required: true
  },
  title: {
    type: String,
    required: true
  },
  content: {
    type: String,
    default: ''
  },
  comments: [
    {
      pid: {
        type: String
      },
      uid: {
        type: String
      },
      author: {
        type: String
      },
      content: {
        type: String,
        default: ''
      },
      createdAt: {
        type: Date,
        default: new Date()
      }
    }
  ],
  createdAt: {
    type: Date,
    default: new Date()
  }
})

route

router.post('/postComment', async ctx => {
  const { pid, uid, content, author } = ctx.request.body

  const postInfo = await Post.update(
    { _id: pid },
    {
      $push: {
        comments: { pid, uid, author, content, createdAt: new Date() }
      }
    },
    err => {
      if (err) {
        ctx.body = {
          code: -1,
          message: '回复失败'
        }
      } else {
        ctx.body = {
          code: 0,
          message: '回复成功'
        }
      }
    }
  )
})

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

愛上了 2022-09-18 18:49:26

老哥,请问你解决了吗?我也遇到了一样的问题了

鸵鸟症 2022-09-18 18:49:26

我也遇到了一样的问题,使用$addToSet代替了\$push之后,解决了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文