溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

deferred方法怎么在jQuery項(xiàng)目中使用

發(fā)布時(shí)間:2021-01-14 15:51:41 來(lái)源:億速云 閱讀:167 作者:Leah 欄目:web開(kāi)發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)deferred方法怎么在jQuery項(xiàng)目中使用,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

deferred簡(jiǎn)介

deferred對(duì)象是jQuery的回調(diào)函數(shù)解決方案,jQuery之前的版本中異步回調(diào)這塊做的不是很好,所以后期補(bǔ)上了該解決方案。

deferred方法怎么在jQuery項(xiàng)目中使用

普遍的ajax操作方式

我們先來(lái)回顧一下jQuery中普通的ajax操作

$.ajax({
 url: 'test.html',
 success: function (res) {
 console.log('數(shù)據(jù)讀取成功');
 },
 error: function () {
 console.log('數(shù)據(jù)讀取失敗');
 }
});

1.5版本后的新寫(xiě)法如下:

$.ajax('test.html').done(function (res) {
 console.log('數(shù)據(jù)讀取成功');
}).fail(function () {
 console.log('數(shù)據(jù)讀取失敗');
});

新版本的寫(xiě)法相比老版本有一個(gè)優(yōu)勢(shì),就是可以自由添加多個(gè)回調(diào)函數(shù)并且按照添加順序執(zhí)行:

$.ajax('test.html').done(function (res) {
 console.log('數(shù)據(jù)讀取成功');
}).fail(function () {
 console.log('數(shù)據(jù)讀取失敗');
}).done(function (res) {
 console.log('這是第二個(gè)成功的回調(diào)函數(shù)');
});

為多個(gè)ajax指定回調(diào)函數(shù)

我們可以通過(guò)when方法,為多個(gè)事件指定一個(gè)回調(diào)函數(shù)

$.when($.ajax('test.html'), $.ajax('test2.html')).done(function (res) {
 console.log('數(shù)據(jù)讀取成功');
}).fail(function () {
 console.log('數(shù)據(jù)讀取失敗');
});

為普通函數(shù)指定回調(diào)函數(shù)

前面說(shuō)到的when是用于ajax方法,而ajax其實(shí)是deferred對(duì)象,如果不是ajax對(duì)象,換成普通的函數(shù)呢,直接使用when是不會(huì)有效果的,會(huì)直接執(zhí)行done方法

所以我們需要手動(dòng)新建一個(gè)deferred對(duì)象

var defer = $.deferred(); //新建一個(gè)deferred對(duì)象
var wait = function (defer) {
 var tasks = function () {
  console.log('執(zhí)行完畢!');
  defer.resolve(); //改變deferred對(duì)象的執(zhí)行狀態(tài) - 成功
 };
 setTimeout(tasks, 5000);
 return defer;
};

這里的resolve就是觸發(fā)done的,對(duì)應(yīng)的reject方法則是用來(lái)調(diào)用fail方法的。

var defer = $.deferred(); //新建一個(gè)deferred對(duì)象
var wait = function (defer) {
 var tasks = function () {
  console.log('執(zhí)行完畢!');
  defer. reject(); //改變deferred對(duì)象的執(zhí)行狀態(tài) - 失敗
 };
 setTimeout(tasks, 5000);
 return defer;
};

執(zhí)行方法

$.when(wait(defer)).done(function (res) {
 console.log('數(shù)據(jù)讀取成功');
}).fail(function () {
 console.log('數(shù)據(jù)讀取失敗');
});

進(jìn)一步優(yōu)化

上面的代碼還有一些問(wèn)題,defer是暴露在全局的,所以我們是可以通過(guò)在全局進(jìn)行defer.resolve()來(lái)提前回調(diào)。

為了避免這種情況,jQuery提供了deferred.promise()方法,它的作用是在原來(lái)的deferred對(duì)象上返回另一個(gè)deferred對(duì)象,后者只開(kāi)放與改變執(zhí)行狀態(tài)無(wú)關(guān)的方法(比如done方法和fail方法)屏蔽與改變執(zhí)行狀態(tài)有關(guān)的方法(比如resolve和reject方法)。

var defer = $.deferred(); //新建一個(gè)deferred對(duì)象
var wait = function (defer) {
 var tasks = function () {
  console.log('執(zhí)行完畢!');
  defer.resolve(); //改變deferred對(duì)象的執(zhí)行狀態(tài) - 成功
 };
 setTimeout(tasks, 5000);
 return defer.promise();
};
$.when(wait(defer)).done(function (res) {
 console.log('數(shù)據(jù)讀取成功');
}).fail(function () {
 console.log('數(shù)據(jù)讀取失敗');
});

也可以把defer包在函數(shù)中

// 普通方法
var wait = function () {
 var defer = $.deferred(); //新建一個(gè)deferred對(duì)象
 var tasks = function () {
  console.log('執(zhí)行完畢!');
  defer.resolve(); //改變deferred對(duì)象的執(zhí)行狀態(tài) - 成功
 };
 setTimeout(tasks, 5000);
 return defer.promise();
};
$.when(wait()).done(function (res) {
 console.log('數(shù)據(jù)讀取成功');
}).fail(function () {
 console.log('數(shù)據(jù)讀取失敗');
});
// 執(zhí)行異步
var setAjax = function () {
 var defer = $.Deferred();
 if (xhr) {
  xhr.abort();
  xhr = null;
 }
 var xhr = $.ajax({
  url: 'test.html',
  success: function (res) {
   console.log('數(shù)據(jù)讀取成功');
   defer.resolve(res);
  },
  error: function () {
   console.log('數(shù)據(jù)讀取失敗');
   defer.reject();
  }
 });
 return defer.promise();
}
$.when(setAjax()).then(function (res) {
 console.log('數(shù)據(jù)讀取成功', res);
}, function () {
 console.log('數(shù)據(jù)讀取失敗');
});

關(guān)于deferred方法怎么在jQuery項(xiàng)目中使用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI