mongodb - Problem using then after mongoose save operation
阿神
阿神 2017-05-02 09:23:27
0
2
599

This is my save operation, but the output order of the print statements is
B: undefined A: 正确内容

router.post('/reply', (req, res, next) => {
  let topic_id = req.body.topic_id,
      content  = req.body.content

  let replyEntity = new replyModel({
    author: req._id,
    topic: topic_id,
    content
  })
  replyEntity.save((err, _new_reply) => {
    if (err) {
      return res.json({
        status: -1
      })
    }
    console.log('A: '+_new_reply)
    return _new_reply
  })
  .then((reply) => {
    console.log('B:  '+reply)
    return res.json({
      status: 0
    })
  })
})

Why is the then operation executed first? Shouldn’t it be executed after my save promise returns?
I have specified mongoose.Promise = Promise;
I hope someone can help me solve it = =

阿神
阿神

闭关修行中......

reply all(2)
伊谢尔伦

You got it mixed up,

 replyEntity.save((err, _new_reply) => {
    if (err) {
      return res.json({
        status: -1
      })
    }
    console.log('A: '+_new_reply)
    return _new_reply
  })
  .then((reply) => {
    console.log('B:  '+reply)
    return res.json({
      status: 0
    })
  })
})

You put callback and promise together

Link description

阿神

Use return Promise.resolve(_new_replay) after successful save, do not return directly

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template