這篇文章主要介紹了用Promise解決多個非同步Ajax請求導致的程式碼嵌套問題,需要的朋友可以參考下
##問題
前端小同學在做頁面的時候,犯了個常見的錯誤:把多個Ajax請求順序著寫下來了,而後面的請求,對前面請求的返回結果,是有依賴的。如下面的程式碼所示:var someData; $.ajax({ url: '/prefix/entity1/action1', type: 'GET' , async: true, contentType: "application/json", success: function (resp) { //do something on response someData.attr1 = resp.attr1; }, error: function (XMLHttpRequest, textStatus, errorThrown) { //在这个页面里,所有的请求的错误都做同样的处理 if (XMLHttpRequest.status == "401") { window.location.href = '/login.html'; } else { alert(XMLHttpRequest.responseText); } } }); $.ajax({ url: '/prefix/entity2/action2', type: 'POST' , dataType: "json", data: JSON.stringify(someData), async: true, contentType: "application/json", success: function (resp) { //do something on response }, error: function (XMLHttpRequest, textStatus, errorThrown) { //在这个页面里,所有的请求的错误都做同样的处理 if (XMLHttpRequest.status == "401") { window.location.href = '/login.html'; } else { alert(XMLHttpRequest.responseText); } } });以上程式碼有兩個問題:*首先就是執行順序不能保證,action2很可能在action1回傳之前就發出了,導致someData.attr1這個參數沒能正確傳出*其次兩個ajax請求的程式碼重複很嚴重
##想法
//url:地址 //data:数据对象,在函数内部会转化成json串,如果没传,表示用GET方法,如果传了,表示用POST方法 function ajax(url, data, callback) { $.ajax({ url: url, type: data == null ? 'GET' : 'POST', dataType: "json", data: data == null ? '' : JSON.stringify(data), async: true, contentType: "application/json", success: function (resp) { callback(resp); }, error: function (XMLHttpRequest, textStatus, errorThrown) { if (XMLHttpRequest.status == "401") { window.parent.location = '/enterprise/enterprise_login.html'; self.location = '/enterprise/enterprise_login.html'; } else { alert(XMLHttpRequest.responseText); } } }); }
這樣只有url,data和callback三個必要的參數要填,其他都定死了
ajax('/prefix/entity1/action1',null, function(resp){ //do something on response someData.attr1 = resp.attr1; ajax('/prefix/entity2/action2', someData, function(resp){ //do something on response } };
至此問題似乎解決得完美,但可以想見,如果請求不只兩個,而是4、5個,同時還有其他非同步操作(例如我們的頁面裡有Vue物件的初始化),彼此之間有依賴關係,光是這樣層層疊疊的括號嵌套,就已經讓人頭暈了。
需要找到一種方法,讓非同步呼叫的表達看起來像同步呼叫一樣。
正好最近看了阮一峰老師關於ES6的書,而且用戶也沒有強硬要求兼容IE瀏覽器,於是就選擇了Promise的方案
解決方案
function ajax(url, data, callback) { var p = new Promise(function (resolve, reject) { $.ajax({ url: url, type: data == null ? 'GET' : 'POST', dataType: "json", data: data == null ? '' : JSON.stringify(data), async: true, contentType: "application/json", success: function (resp) { callback(resp); resolve(); }, error: function (XMLHttpRequest, textStatus, errorThrown) { if (XMLHttpRequest.status == "401") { window.parent.location = '/enterprise/enterprise_login.html'; self.location = '/enterprise/enterprise_login.html'; } else { alert(XMLHttpRequest.responseText); } reject(); } }); }); return p; }
ajax('/prefix/entity1/action1',null, function(resp){ //do something on response someData.attr1 = resp.attr1; }).then( ajax('/prefix/entity2/action2', someData, function(resp){ //do something on response } ).then( initVue() ; ).then( //do something else )
上面是我整理給大家的,希望今後對大家有幫助。
相關文章:
HTTP封包及ajax基礎Ajax跨域請求的原理(圖文教學)Ajax非同步請求技術實例講解以上是用Promise解決多個非同步Ajax請求導致的程式碼嵌套問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!