标签: javascript ecmascript-6 bluebird es6-promise
假设我想发送电子邮件并在从数据库查找用户后同时向客户端发送通知,我可以写
User.findById(userId).exec() .then(() => sendMail()) .then(() => pushNotification())
但是,由于pushNotification不必在sendMail之后发生,有没有其他方法可以写这个?
pushNotification
sendMail