本文小編為大家詳細(xì)介紹“ES6中的Promise對(duì)象如何使用”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“ES6中的Promise對(duì)象如何使用”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。
我們提供的服務(wù)有:成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、平壩ssl等。為成百上千家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的平壩網(wǎng)站制作公司
在promise之前處理異步回調(diào)的方式
function asyncFun(a,b,callback) { setTimeout(function () { callback(a+b); },200); } asyncFun(1,2, function (res) { if(res > 2) { asyncFun(res, 2, function (res) { if(res > 4) { asyncFun(res, 2, function (res) { console.log('ok'); console.log(res); }) } }) } });
從上面可以看出所謂的”回調(diào)地獄”的可怕
使用promise來(lái)優(yōu)雅的處理異步
function asyncFun(a,b) { return new Promise(function (resolve, reject) { setTimeout(function() { resolve(a + b); },200); }) } asyncFun(1,2) .then(function (res) { if(res > 2) { return asyncFun(res, 2); } }) .then(function (res) { if(res > 4) { return asyncFun(res, 2); } }) .then(function (res) { console.log('ok'); console.log(res); }) .catch(function (error) { console.log(error); });
使用promise處理內(nèi)部異常的舉例
function asyncFun(a,b) { return new Promise(function (resolve, reject) { // 模擬異常判斷 if(typeof a !== 'number' || typeof b !== 'number') { reject(new Error('no number')); } setTimeout(function() { resolve(a + b); },200); }) } asyncFun(1,2) .then(function (res) { if(res > 2) { return asyncFun(res, 2); } },function (err) { console.log('first err: ', err); }) .then(function (res) { if(res > 4) { return asyncFun(res, 'a'); } },function (err) { console.log('second err: ', err); }) .then(function (res) { console.log('ok'); console.log(res); },function (err) { console.log('third err: ', err); });
從上面可以看出通過(guò)then的第二個(gè)回調(diào)函數(shù)處理promise對(duì)象中的異常,通過(guò)reject返回異常的promise對(duì)象
通過(guò)catch統(tǒng)一處理錯(cuò)誤,通過(guò)finally執(zhí)行最終必須執(zhí)行的邏輯
function asyncFun(a,b) { return new Promise(function (resolve, reject) { // 模擬異常判斷 if(typeof a !== 'number' || typeof b !== 'number') { reject(new Error('no number')); } setTimeout(function() { resolve(a + b); },200); }) } asyncFun(1,2) .then(function (res) { if(res > 2) { return asyncFun(res, 2); } }) .then(function (res) { if(res > 4) { return asyncFun(res, 'a'); } }) .then(function (res) { console.log('ok'); console.log(res); }) .catch(function (error) { console.log('catch: ', error); }) .finally(function () { console.log('finally: ', 1+2); });
通過(guò)Promise.all()靜態(tài)方法來(lái)處理多個(gè)異步
function asyncFun(a,b) { return new Promise(function (resolve, reject) { setTimeout(function() { resolve(a + b); },200); }) } var promise = Promise.all([asyncFun(1,2), asyncFun(2,3), asyncFun(3,4)]) promise.then(function (res) { console.log(res); // [3, 5, 7] });
通過(guò)Promise.race()靜態(tài)方法來(lái)獲取多個(gè)異步中最快的一個(gè)
function asyncFun(a,b,time) { return new Promise(function (resolve, reject) { setTimeout(function() { resolve(a + b); },time); }) } var promise = Promise.race([asyncFun(1,2,10), asyncFun(2,3,6), asyncFun(3,4,200)]) promise.then(function (res) { console.log(res); // 5 });
通過(guò)Promise.resolve() 靜態(tài)方法來(lái)直接返回成功的異步對(duì)象
var p = Promise.resolve('hello'); p.then(function (res) { console.log(res); // hello });
等同于,如下:
var p = new Promise(function (resolve, reject) { resolve('hello2'); }) p.then(function (res) { console.log(res); // hello2 });
通過(guò)Promise.reject() 靜態(tài)方法來(lái)直接返回失敗的異步對(duì)象
var p = Promise.reject('err') p.then(null, function (res) { console.log(res); // err });
等同于,如下:
var p = new Promise(function (resolve, reject) { reject('err2'); }) p.then(null, function (res) { console.log(res); // err });
通過(guò)一個(gè)小例子來(lái)測(cè)試Promise在面向?qū)ο笾袘?yīng)用
'use strict'; class User{ constructor(name, password) { this.name = name; this.password = password; } send() { let name = this.name; return new Promise(function (resolve, reject) { setTimeout(function () { if(name === 'leo') { resolve('send success'); }else{ reject('send error'); } }); }); } validatePwd() { let pwd = this.password; return new Promise(function (resolve, reject) { setTimeout(function () { if(pwd === '123') { resolve('validatePwd success'); }else{ reject('validatePwd error'); } }); }) } } let user1 = new User('Joh'); user1.send() .then(function (res) { console.log(res); }) .catch(function (err) { console.log(err); }); let user2 = new User('leo'); user2.send() .then(function (res) { console.log(res); }) .catch(function (err) { console.log(err); }); let user3 = new User('leo', '123'); user3.validatePwd() .then(function (res) { return user3.validatePwd(); }) .then(function (res) { console.log(res); }) .catch(function(error) { console.log(error); }); let user4 = new User('leo', '1234'); user4.validatePwd() .then(function (res) { return user4.validatePwd(); }) .then(function (res) { console.log(res); }) .catch(function(error) { console.log(error); });
讀到這里,這篇“ES6中的Promise對(duì)象如何使用”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。