【问题标题】:mongodb update doesn't update immediatelymongodb更新不会立即更新
【发布时间】:2018-11-08 19:05:26
【问题描述】:

我正在尝试将一个用户对象添加到我的游戏对象的字段“players_list”,这是一个用户对象列表。这是我的游戏对象的样子:

{ players_list:
   [ { games: [Array],
       _id: '5b0e112ff13033792f08566f',
       email: 'c',
       password: '$2a$10$iWOBvVf4KAPwbH7zDczfYeI5iXI721jQ7bN1juJ4Us3R.Lqetmhfu',
       handle: 'C',
       __v: 0,
       id: '5b0e112ff13033792f08566f' } ],
  _id: '5b0e181aeb766e7bfaf2fb09',
  players_status:
   [ { _id: '5b0e181aeb766e7bfaf2fb0a',
       playerId: '5b0e112ff13033792f08566f',
       status: 'Joined' } ],
  postGameEvaluation: [],
  date: 'QQQQ',
  time: 'QQQQ',
  duration: 4,
  players_needed: 4,
  max_players: 4,
  level: 4,
  author:
   { games:
      [ '5b0e13e69d35007a147578da',
        '5b0e15b4b117987b00d68cb4',
        '5b0e181aeb766e7bfaf2fb09' ],
     _id: '5b0e112ff13033792f08566f',
     email: 'c',
     password: '$2a$10$iWOBvVf4KAPwbH7zDczfYeI5iXI721jQ7bN1juJ4Us3R.Lqetmhfu',
     handle: 'C',
     __v: 0,
     id: '5b0e112ff13033792f08566f' },
  __v: 0 }

这就是我的用户对象的样子

{ games: [],
  _id: 5b0e1820eb766e7bfaf2fb0b,
  email: 'f',
  password: '$2a$10$JmS.9axW8batMUKzE7OQx.GShdNDt09eArXfYGoI/DUWEKVwAn5ju',
  handle: 'F',
  __v: 0 }

然后我运行 req.body.players_list.push(req.user) 将 User 对象添加到 Game 对象的 player_list 字段中。这是 req.body 添加 User 对象后的样子:

{ players_list:
   [ { games: [Array],
       _id: '5b0e112ff13033792f08566f',
       email: 'c',
       password: '$2a$10$iWOBvVf4KAPwbH7zDczfYeI5iXI721jQ7bN1juJ4Us3R.Lqetmhfu',
       handle: 'C',
       __v: 0,
       id: '5b0e112ff13033792f08566f' },
     { games: [],
       _id: 5b0e1820eb766e7bfaf2fb0b,
       email: 'f',
       password: '$2a$10$JmS.9axW8batMUKzE7OQx.GShdNDt09eArXfYGoI/DUWEKVwAn5ju',
       handle: 'F',
       __v: 0 } ],
  _id: '5b0e181aeb766e7bfaf2fb09',
  players_status:
   [ { _id: '5b0e181aeb766e7bfaf2fb0a',
       playerId: '5b0e112ff13033792f08566f',
       status: 'Joined' } ],
  postGameEvaluation: [],
  date: 'QQQQ',
  time: 'QQQQ',
  duration: 4,
  players_needed: 4,
  max_players: 4,
  level: 4,
  author:
   { games:
      [ '5b0e13e69d35007a147578da',
        '5b0e15b4b117987b00d68cb4',
        '5b0e181aeb766e7bfaf2fb09' ],
     _id: '5b0e112ff13033792f08566f',
     email: 'c',
     password: '$2a$10$iWOBvVf4KAPwbH7zDczfYeI5iXI721jQ7bN1juJ4Us3R.Lqetmhfu',
     handle: 'C',
     __v: 0,
     id: '5b0e112ff13033792f08566f' },
  __v: 0 }

然后,我用Post.findByIdAndUpdate(req.params.id, req.body).then((result) => {... 更新了 mongo 中的 Game 对象,但结果不包含新用户。这是我的结果的样子

{ players_list: [ 5b0e112ff13033792f08566f ],
  _id: 5b0e181aeb766e7bfaf2fb09,
  players_status:
   [ { _id: 5b0e181aeb766e7bfaf2fb0a,
       playerId: '5b0e112ff13033792f08566f',
       status: 'Joined' } ],
  postGameEvaluation: [],
  date: 'QQQQ',
  time: 'QQQQ',
  duration: 4,
  players_needed: 4,
  max_players: 4,
  level: 4,
  author: 5b0e112ff13033792f08566f,
  __v: 0 }

奇怪的是,如果我离开当前的 React 组件,然后再回到它(从而触发 fetchUser 和 fetchGame),那么所获取的游戏确实在它的 player_list 中有新用户。发生这种情况是因为 mongo update 函数是异步的吗?即便如此,我认为Post.findByIdAndUpdate(req.params.id, req.body).then((result) => { 中的.then((result) => { 确保Post.findByIdAndUpdate 在继续之前先完成

【问题讨论】:

  • 使用findByIdAndUpdate(req.params.id, req.body).exec().then(... 获得承诺,而不是猫鼬查询。 (它有一个.then,但不是一个真正的承诺。)相关的queries-are-not-promisesfindByIdAndUpdate docs,它表明它返回一个查询对象。

标签: javascript database mongodb asynchronous mongoose


【解决方案1】:

如果您查看文档:http://mongoosejs.com/docs/api.html#findbyidandupdate_findByIdAndUpdate,您会注意到 findByIdAndUpdate 返回的是原始对象,而不是更新后的文档。您必须传入 {new: true} 作为选项,才能使用更新的对象进行解析。

【讨论】:

    猜你喜欢
    • 2012-09-22
    • 1970-01-01
    • 1970-01-01
    • 2016-09-10
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-08-13
    • 2021-11-07
    相关资源
    最近更新 更多