国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Async/await 和 Promises 區別

Y3G / 2788人閱讀

摘要:原文地址是建立在上的,不能被使用在普通回調以及節點回調和很像,不阻塞代碼看起來像同步代碼。語法假設函數返回值是,并且有一些對象。我們只想調用它并且記錄該并且返回完成。使用使用區別在函數前有一個關鍵字,關鍵字只能在使用定義的函數中使用。

原文地址=> 6 Reasons Why JavaScript’s Async/Await Blows Promises Away (Tutorial)

Async/await 是建立在 Promises上的,不能被使用在普通回調以及節點回調

Async/await 和 Promises 很像,不阻塞

Async/await 代碼看起來像同步代碼。

語法

假設函數getJSON返回值是 Promise,并且 Promise resolves 有一些JSON 對象。我們只想調用它并且記錄該JSON并且返回完成。

使用Promise

const makeRequest = () =>
  getJSON()
    .then(data => {
      console.log(data)
      return "done"
    })

makeRequest()

使用Async

const makeRequest = async() => {
        console.log(await getJSON)
        return "done"
}

makeRequest()
區別

在函數前有一個關鍵字asyncawait關鍵字只能在使用async定義的函數中使用。任何一個async函數都會隱式返回一個promise,并且promise resolve 的值就是 return 返回的值 (例子中是”done”)

不能在函數開頭使用await

有哪些好處

簡潔的代碼

使用async函數可以讓代碼簡潔很多,不需要像Promise一樣需要些then

錯誤處理

Promise 中不能自定義使用 try/catch 進行錯誤捕獲,但是在 Async/await 中可以像處理同步代碼處理錯誤

const makeRequest = () => {
  try {
    getJSON()
      .then(result => {
        // this parse may fail
        const data = JSON.parse(result)
        console.log(data)
      })
      // uncomment this block to handle asynchronous errors
      // .catch((err) => {
      //   console.log(err)
      // })
  } catch (err) {
    console.log(err)
  }
}

Async/await

const makeRequest = async () => {
  try {
    // this parse may fail
    const data = JSON.parse(await getJSON())
    console.log(data)
  } catch (err) {
    console.log(err)
  }
}

條件語句

條件語句也和錯誤捕獲是一樣的,在 Async 中也可以像平時一般使用條件語句

Promise

const makeRequest = () => {
  return getJSON()
    .then(data => {
      if (data.needsAnotherRequest) {
        return makeAnotherRequest(data)
          .then(moreData => {
            console.log(moreData)
            return moreData
          })
      } else {
        console.log(data)
        return data
      }
    })
}

Async

const makeRequest = async () => {
  const data = await getJSON()
  if (data.needsAnotherRequest) {
    const moreData = await makeAnotherRequest(data);
    console.log(moreData)
    return moreData
  } else {
    console.log(data)
    return data    
  }
}

中間值

在一些場景中,也許需要 promise1 去觸發 promise2 再去觸發 promise3,這個時候代碼應該是這樣的

const makeRequest = () => {
  return promise1()
    .then(value1 => {
      // do something
      return promise2(value1)
        .then(value2 => {
          // do something          
          return promise3(value1, value2)
        })
    })
}

如過 promise3 不需要 value1,嵌套將會變得簡單。如果你有強迫癥,則將值1&2使用 promise.all() 分裝起來。

const makeRequest = () => {
  return promise1()
    .then(value1 => {
      // do something
      return Promise.all([value1, promise2(value1)])
    })
    .then(([value1, value2]) => {
      // do something          
      return promise3(value1, value2)
    })
}

但是使用 Async 就會變得很簡單

const makeRequest = async () => {
  const value1 = await promise1()
  const value2 = await promise2(value1)
  return promise3(value1, value2)
}

錯誤棧

如過 Promise 連續調用,對于錯誤的處理是很麻煩的。你無法知道錯誤出在哪里。

const makeRequest = () => {
  return callAPromise()
    .then(() => callAPromise())
    .then(() => callAPromise())
    .then(() => callAPromise())
    .then(() => callAPromise())
    .then(() => {
      throw new Error("oops");
    })
}

makeRequest()
  .catch(err => {
    console.log(err);
    // output
    // Error: oops at callAPromise.then.then.then.then.then (index.js:8:13)
  })

但是對于 Async 就不一樣了

const makeRequest = async () => {
  await callAPromise()
  await callAPromise()
  await callAPromise()
  await callAPromise()
  await callAPromise()
  throw new Error("oops");
}

makeRequest()
  .catch(err => {
    console.log(err);
    // output
    // Error: oops at makeRequest (index.js:7:9)
  })

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/93255.html

相關文章

  • async/await 真不是你想象中那么簡單

    摘要:第二種方法一開始就發起了個請求并等待請求都到達后獲取數據。請求返回的數據秒后就能操作了這種方法比第二種方法可以更快處理數據。如果請求時間是依次遞減的那么和方法二效果是一樣在有多個請求時這種情況一般不存在。 先上代碼 公共代碼 function getData(data, time) { return new Promise(function (resol...

    zsy888 評論0 收藏0
  • async/await 真不是你想象中那么簡單

    先上代碼 公共代碼 function getData(data, time) { return new Promise(function (resolve, reject) { setTimeout(function () { resolve(data); ...

    CoXie 評論0 收藏0
  • async/await 真不是你想象中那么簡單

    摘要:第二種方法一開始就發起了個請求并等待請求都到達后獲取數據。請求返回的數據秒后就能操作了這種方法比第二種方法可以更快處理數據。如果請求時間是依次遞減的那么和方法二效果是一樣在有多個請求時這種情況一般不存在。 先上代碼 公共代碼 function getData(data, time) { return new Promise(function (resol...

    mylxsw 評論0 收藏0
  • 翻譯:Taming the asynchronous beast with ES7

    摘要:讓我們使用它從數組中返回一個值數組在中,我們可以這樣做,這是一種更簡單的方法最重要的部分是創建數組,該數組立即調用所有的我們在主函數中等待這些。所以在我們真正等待完成之前,主函數就退出了。 原文:https://pouchdb.com/2015/03/0... PouchDB最棘手的方面之一是它的API是異步的。在Stack Overflow、Github和IRC上,我看到了不少困惑的...

    Eastboat 評論0 收藏0
  • async & await (譯)

    摘要:的出現,讓我們可以走出回調地獄,著實驚艷。我已經開始使用里的和關鍵字來簡化的處理。異步任務在這個例子是執行之后,一直在執行完成才繼續下一個任務并沒有產生阻塞。最后這個函數處理了返回值并且返回了一個對象。依然很棒,但和使得它可維護性更好。 JavaScript Promises的出現,讓我們可以走出回調地獄,著實驚艷。Promises 允許我們更好的引入和處理異步任務,雖然如此,但引入好...

    The question 評論0 收藏0

發表評論

0條評論

Y3G

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<