Bluebird用于并行独立任务

时间:2015-08-24 03:07:20

标签: javascript ecmascript-6 bluebird es6-promise

假设我想发送电子邮件并在从数据库查找用户后同时向客户端发送通知,我可以写

User.findById(userId).exec()
.then(() => sendMail())
.then(() => pushNotification())

但是,由于pushNotification不必在sendMail之后发生,有没有其他方法可以写这个?

0 个答案:

没有答案