您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Js中async/await的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
async/await 是一種編寫異步代碼的新方法。之前異步代碼的方案是回調和 promise。
async/await 是建立在 promise 的基礎上。
async/await 像 promise 一樣,也是非阻塞的。
async/await 讓異步代碼看起來、表現起來更像同步代碼。這正是其威力所在。
async怎么處理返回值
async function testAsync() { return "hello async"; } let result = testAsync(); console.log(result)
輸出結果:
Promise {[[PromiseStatus]]: "resolved", [[PromiseValue]]: "hello async"}
從結果中可以看到async函數返回的是一個promise對象,如果在函數中 return 一個直接量,async 會把這個直接量通過 Promise.resolve()
封裝成 Promise 對象。
如果asyn函數沒有返回值
async function testAsync1() { console.log("hello async"); } let result1 = testAsync1(); console.log(result1);
結果
hello async Promise {[[PromiseStatus]]: "resolved", [[PromiseValue]]: undefined}
結果返回Promise.resolve(undefined)
。
await做了什么處理
從字面意思上看await就是等待,await 等待的是一個表達式,這個表達式的返回值可以是一個promise對象也可以是其他值。
很多人以為await會一直等待之后的表達式執行完之后才會繼續執行后面的代碼,實際上await是一個讓出線程的標志。await后面的函數會先執行一遍,然后就會跳出整個async函數來執行后面js棧(后面會詳述)的代碼。等本輪事件循環執行完了之后又會跳回到async函數中等待await
后面表達式的返回值,如果返回值為非promise則繼續執行async函數后面的代碼,否則將返回的promise放入promise隊列(Promise的Job Queue)
async/await 執行順序
先看一個例子
function testSometing() { console.log("執行testSometing"); return "testSometing"; } async function testAsync() { console.log("執行testAsync"); return Promise.resolve("hello async"); } async function test() { console.log("test start..."); const v1 = await testSometing();//關鍵點1 console.log(v1); const v2 = await testAsync(); console.log(v2); console.log(v1, v2); } test(); var promise = new Promise((resolve)=> { console.log("promise start.."); resolve("promise");});//關鍵點2 promise.then((val)=> console.log(val)); console.log("test end...")
輸出結果:
test start... 執行testSometing promise start.. test end... testSometing 執行testAsync promise hello async testSometing hello async
當test函數執行到
const v1 = await testSometing();
的時候,會先執行testSometing這個函數打印出“執行testSometing”的字符串,然后因為await會讓出線程就會區執行后面的
var promise = new Promise((resolve)=> { console.log("promise start.."); resolve("promise");});//關鍵點2
然后打印出“promise start..”接下來會把返回的這promise放入promise隊列(Promise的Job Queue),繼續執行打印“test end...”,等本輪事件循環執行結束后,又會跳回到async函數中(test函數),等待之前await 后面表達式的返回值,因為testSometing 不是async函數,所以返回的是一個字符串“testSometing”,test函數繼續執行,執行到
const v2 = await testAsync();
和之前一樣又會跳出test函數,執行后續代碼,此時事件循環就到了promise的隊列,執行promise.then((val)=> console.log(val));
then后面的語句,之后和前面一樣又跳回到test函數繼續執行。
這個就是在async/await 函數之后js的執行順序,我們再看一個列子把testSometing函數前面加上async
async function testSometing() { console.log("執行testSometing"); return "testSometing"; } async function testAsync() { console.log("執行testAsync"); return Promise.resolve("hello async"); } async function test() { console.log("test start..."); const v1 = await testSometing(); console.log(v1); const v2 = await testAsync(); console.log(v2); console.log(v1, v2); } test(); var promise = new Promise((resolve)=> { console.log("promise start.."); resolve("promise");});//3 promise.then((val)=> console.log(val)); console.log("test end...")
輸出結果:
test start... 執行testSometing promise start.. test end... promise testSometing 執行testAsync hello async testSometing hello async
和上一個例子比較發現promise.then((val)=> console.log(val));
先與console.log(v1);
執行了,原因是因為現在testSometing函數加了async,返回的是一個Promise對象要要等它resolve,所以將當前Promise推入隊列,所以會繼續跳出test函數執行后續代碼。之后就開始執行promise的任務隊列了,所以先執行了promise.then((val)=> console.log(val));
因為這個Promise對象先推入隊列;
關于“Js中async/await的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。