📜  nodejs promise then example - Javascript代码示例

📅  最后修改于: 2022-03-11 15:01:42.962000             🧑  作者: Mango

代码示例1
p.then(onFulfilled, onRejected);

p.then(function(value) {
   //  run
  }, function(reason) {
  // fail
});