mongodb - mongoose save操作后使用then的问题
阿神
阿神 2017-05-02 09:23:27
0
2
570

这是我的save操作,但是打印语句的输出顺序为
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
    })
  })
})

为什么then操作内容会先执行呢,不应该等待我的save promise 返回回去才执行的吗?
我已经指定了mongoose.Promise = Promise;
希望有人帮我解决下啊= =

阿神
阿神

闭关修行中......

Antworte allen(2)
伊谢尔伦

你搞混了,

 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
    })
  })
})

你把callback和promise弄到一起了

链接描述

阿神

save 成功后使用return Promise.resolve(_new_replay),不要直接return

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!