溫馨提示×

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

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

JavaScript中await和async有什么作用

發(fā)布時(shí)間:2020-06-15 22:44:21 來源:億速云 閱讀:247 作者:元一 欄目:web開發(fā)

await/async簡介

await/async是ES7最重要特性之一,它是目前為止JS最佳的異步解決方案了。雖然沒有在ES2016中錄入,但很快就到來,目前已經(jīng)在 ES-NextStage4階段。

async/await特點(diǎn)

async/await更加語義化,async 是“異步”的簡寫,async function 用于申明一個(gè) function 是異步的; await,可以認(rèn)為是async wait的簡寫, 用于等待一個(gè)異步方法執(zhí)行完成;

async/await是一個(gè)用同步思維解決異步問題的方案(等結(jié)果出來之后,代碼才會(huì)繼續(xù)往下執(zhí)行)

可以通過多層 async function 的同步寫法代替?zhèn)鹘y(tǒng)的callback嵌套

async function語法

自動(dòng)將常規(guī)函數(shù)轉(zhuǎn)換成Promise,返回值也是一個(gè)Promise對(duì)象

只有async函數(shù)內(nèi)部的異步操作執(zhí)行完,才會(huì)執(zhí)行then方法指定的回調(diào)函數(shù)

異步函數(shù)內(nèi)部可以使用await

直接上例子,比如我們需要按順序獲?。寒a(chǎn)品數(shù)據(jù)=>用戶數(shù)據(jù)=>評(píng)論數(shù)據(jù)

老朋友 Ajax

傳統(tǒng)的寫法,無需解釋

// 獲取產(chǎn)品數(shù)據(jù)
ajax('products.json', (products) => {
    console.log('AJAX/products >>>', JSON.parse(products));
    // 獲取用戶數(shù)據(jù)
    ajax('users.json', (users) => {
        console.log('AJAX/users >>>', JSON.parse(users));
        // 獲取評(píng)論數(shù)據(jù)
        ajax('products.json', (comments) => {
            console.log('AJAX/comments >>>', JSON.parse(comments));
        });
    });
});

不算新的朋友 Promise

Promise 已經(jīng)被提及已久了,也是 ES6 的一部分。Promise 能消除 callback hell 帶來的厄運(yùn)金字塔,相比起來代碼更清晰了。

// Promise
// 封裝 Ajax,返回一個(gè) Promise
function requestP(url) {
    return new Promise(function(resolve, reject) {
        ajax(url, (response) => {
            resolve(JSON.parse(response));
        });
    });
}
// 獲取產(chǎn)品數(shù)據(jù)
requestP('products.json').then(function(products){
    console.log('Promises/products >>>', products);
});
// 獲取用戶數(shù)據(jù)
requestP('users.json').then(function(users){
    console.log('Promises/users >>>', users);
});
// 獲取評(píng)論數(shù)據(jù)
requestP('comments.json').then(function(comments){
    console.log('Promises/comments >>>', comments);
});

當(dāng)然使用 Promise.all 可以更簡潔

Promise.all([
    requestP('products.json'),
    requestP('users.json'),
    requestP('comments.json')
])
.then(function(data) {
    console.log('Parallel promises >>>', data);
});

強(qiáng)勁的新朋友 Generators

Generators 也是 ES6 一個(gè)新的特性,能夠 暫停/執(zhí)行 代碼。yield 表示暫停,iterator.next 表示執(zhí)行下一步,如果你不了解 Generators 也沒關(guān)系,可以忽略它直接學(xué)習(xí) await/async。

// Generators
function request(url) {
    ajax(url, (response) => {
        iterator.next(JSON.parse(response));
    });
}
function *main() {
    // 獲取產(chǎn)品數(shù)據(jù)
    let data = yield request('products.json');
    // 獲取用戶數(shù)據(jù)
    let users = yield request('users.json');
    // 獲取評(píng)論數(shù)據(jù)
    let products = yield request('comments.json');
    console.log('Generator/products >>>', products);
    console.log('Generator/users >>>', users);
    console.log('Generator/comments >>>', comments);
}
var iterator = main();
iterator.next();
碉堡的朋友 await/async
與 Promise 結(jié)合使用
// 封裝 Ajax,返回一個(gè) Promise
function requestP(url) {
    return new Promise(function(resolve, reject) {
        ajax(url, (response) => {
            resolve(JSON.parse(response));
        });
    });
}
(async () => {
    // 獲取產(chǎn)品數(shù)據(jù)
    let data = await requestP('products.json');
     // 獲取用戶數(shù)據(jù)
    let users = await requestP('users.json');
     // 獲取評(píng)論數(shù)據(jù)
    let products = await requestP('comments.json');
    console.log('ES7 Async/products >>>', products);
    console.log('ES7 Async/users >>>', users);
    console.log('ES7 Async/comments >>>', comments);
}());

與 Fetch API 結(jié)合使用:

(async () => {
// Async/await using the fetch API
    try {
         // 獲取產(chǎn)品數(shù)據(jù)
        let products = await fetch('products.json');
        // Parsing products
        let parsedProducts = await products.json();
        // 獲取用戶數(shù)據(jù)
        let users = await fetch('users.json');
        // Parsing users
        let parsedUsers = await users.json();
        // 獲取評(píng)論數(shù)據(jù)
        let comments = await fetch('comments.json');
        // Parsing comments
        let parsedComments = await comments.json();
        console.log('ES7 Async+fetch/products >>>', parsedProducts);
        console.log('ES7 Async+fetch/users >>>', parsedUsers);
        console.log('ES7 Async+fetch/comments >>>', parsedComments);
    } catch (error) {
        console.log(error);
    }
}());

按數(shù)組順序執(zhí)行

(async () => {
    let parallelData = await* [
        requestP('products.json'),
        requestP('users.json'),
        requestP('comments.json')
    ];
    console.log('Async parallel >>>', parallelData);
}());

再次結(jié)合 Fetch

(async () => {
    let parallelDataFetch = await* [
        (await fetch('products.json')).json(),
        (await fetch('users.json')).json(),
        (await fetch('comments.json')).json()
    ];
    console.log('Async parallel+fetch >>>', parallelDataFetch);
}());

使用 await/async 用同步的思維去解決異步的代碼,感覺非??岱浅K?!

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

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

AI