Promise 用法

写法1:
Promise.then(   
  function(success){}, //成功了
  function(error){}       //失败了
)
写法2:
Promise
.then(success=>{成功了})
.catch(error=>{失败了});

Promise.all([异步请求1,异步请求2])
.then(success=>{成功了})
.catch(error=>{失败了});


你可能感兴趣的:(Promise 用法)