91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JavaScript之Async/Await有哪些新語法

發布時間:2020-07-27 09:50:12 來源:億速云 閱讀:141 作者:Leah 欄目:web開發

這期內容當中小編將會給大家帶來有關JavaScript之Async/Await有哪些新語法,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

受到Zeit團隊博文的啟發,我們的PayPal團隊不久之前將服務器端數據庫遷移到了Async/Await上。我想要和你們分享一下我的經驗。

首先我們先來了解兩個術語:

  • Async函數
  • Await 關鍵詞

你們總是將Async和Await放在一起說,但是你需要知道的是,它們是兩個不同的東西。對于Async函數和Await關鍵詞,你需要了解的是,他們從某種程度上來說當然是有一定關聯的,但是在沒有Await的情況下,Async函數依然可以使用。


函數會返回一個Promise

當你用async關鍵詞創建一個函數的時候,這個函數永遠都會返回一個Promise。當你在async函數內部進行返回的時候,它會用一個Promise包裹你的值。

 // here is an async function
 async function getNumber() {

  return 4 // actually returns a Promise
  }
  // the same function using promises
  function getNumber() {

     return Promise.resolve(4)

}

Async函數和它的基于Promise的Equivalent

除了將你的return轉換為Promise之外,async函數還有一個特別之處,那就是它是唯一一個讓你使用await關鍵詞的地方。

Await讓你可以暫停async函數的執行,直到它受到了一個promise的結果。這讓你可以寫出按照執行順序顯示的async代碼。

 // async function to show user data
 async function displayUserData() {

    let me = await fetch('/users/me')

    console.log(me)

}// promise-based equivalent
function displayUserData() {

    return fetch('/users/me').then(function(me) {

        console.log(me)

    })

})

Await允許你在不需要callback的情況下寫異步代碼。這樣做的好處是讓你的代碼可讀性更高。而且await可以與任何promise兼容,而不僅僅是用async函數所創建的promise。

在Async函數中處理錯誤

因為async函數也是一個Promise,當你在代碼中放入一個async函數的時候,它會被吸收,然后作為rejected Promise被返回。

 // basic error handling with async functions
 async function getData(param) {

   if (isBad(param)) {     
    throw new Error("this is a bad param")

   }   
   // ...
   }
   // basic promise-based error handling example
   function getData(param) {

   if (isBad(param)) {      
   return Promise.reject(new Error("this is a bad param"))

   }  
    // ...
    }

當你使用await調用Promise的時候,你可以用try/catch將其包裹,或是你需要在返回的Promise中添加一個catch handler。

 // rely on try/catch around the awaited Promise

async function doSomething() {   
 try {       
  let data = await getData()

    } catch (err) {       
     console.error(err)

    }

}
// add a catch handlerfunction doSomething() {    
return getData().catch(err => {      
  console.error(err)

    })

}

整合

利用好promise的錯誤處理屬性,以及async函數的簡潔語法,能夠給你帶來一些強大的能力。

在下面這個簡單的例子中,你會看到我是如何利用async函數內在的錯誤處理能力的,它讓我簡化了Express應用中的錯誤處理流程。

 // catch any errors in the promise and either forward them to next(err) or ignore them
 const catchErrors = fn => (req, res, next) => fn(req, res, next).catch(next)
 const ignoreErrors = fn => (req, res, next) => fn(req, res, next).catch(() => next())
 // wrap my routes in those helpers functions to get error handling
 app.get('/sendMoney/:amount', catchErrors(sendMoney))
 // use our ignoreErrors helper to ignore any errors in the logging middleware
 app.get('/doSomethingElse', ignoreErrors(logSomething), doSomethingElse)
 // controller method can throw errors knowing router will pick it up
 export async function sendMoney(req, res, next) {  
 if (!req.param.amount) {     
 throw new Error('You need to provide an amount!')  

  }  await Money.sendPayment(amount) // no try/catch needed

  res.send(`You just sent ${amount}`)}

// basic async logging middleware
export async function logSomething(req, res, next) {

    // ...    
    throw new Error('Something went wrong with your logging')

    // ...

}

此前,我們一直都在用next(err)來處理錯誤。然而,有了async/await,我們可以將錯誤放在代碼中的任何位置,然后router會將這些錯誤throw到Express提供的next函數中,這樣就極大的簡化了錯誤處理流程。

我用了幾個小時的時間對數據庫進行了遷移。要想使用這個方式,你唯一需要的,就是對Promise的深刻理解,以及學會如何設置babel。

上述就是小編為大家分享的JavaScript之Async/Await有哪些新語法了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

五家渠市| 马鞍山市| 安阳县| 仙游县| 罗源县| 开江县| 化州市| 金坛市| 睢宁县| 峨山| 监利县| 大名县| 天水市| 武安市| 吴旗县| 开封县| 扎赉特旗| 山阳县| 昌邑市| 汉沽区| 阳新县| 云林县| 新巴尔虎右旗| 区。| 唐山市| 山阴县| 福州市| 台州市| 赣榆县| 三门峡市| 临清市| 义马市| 普兰店市| 靖江市| 广宗县| 通海县| 赣州市| 怀安县| 攀枝花市| 舞阳县| 芒康县|