摘要:本文將會解釋回調函數的概念,同時幫你區分兩種回調:同步和異步。
回調函數是每一個前端程序員都應該知道的概念之一。回調可用於數組、計時器函數、promise、事件處理中。前端
本文將會解釋回調函數的概念,同時幫你區分兩種回調:同步和異步。git
1.回調函數
首先寫一個向人打招呼的函數。程序員
只須要建立一個接受 name 參數的函數 greet(name)。這個函數應返回打招呼的消息:github
function greet(name) { return `Hello, ${name}!`; } greet('Cristina'); // => 'Hello, Cristina!'
若是向不少人打招呼該怎麼辦?能夠用特殊的數組方法 array.map() 能夠實現:json
const persons = ['Cristina', 'Ana']; const messages = persons.map(greet); messages; // => ['Hello, Cristina!', 'Hello, Ana!']
persons.map(greet) 獲取 persons 數組的全部元素,並分別用每一個元素做爲調用參數來調用 greet() 函數:`greet('Cristina'), greet('Ana')。segmentfault
有意思的是 persons.map(greet) 方法能夠接受 greet() 函數做爲參數。這樣 greet() 就成了回調函數。api
persons.map(greet) 是用另外一個函數做爲參數的函數,所以被稱爲高階函數。數組
回調函數做爲高階函數的參數,高階函數經過調用回調函數來執行操做。重要的是高階函數負責調用回調,併爲其提供正確的參數。promise
在前面的例子中,高階函數 persons.map(greet) 負責調用 greet() 函數,並分別把數組中全部的元素 'Cristina' 和 Ana ' 做爲參數。這就爲識別回調提供了一條簡單的規則。若是你定義了一個函數,並將其做參數提供給另外一個函數的話,那麼這就建立了一個回調。app
你能夠本身編寫使用回調的高階函數。下面是 array.map() 方法的等效版本:
function map(array, callback) { const mappedArray = []; for (const item of array) { mappedArray.push( callback(item) ); } return mappedArray; } function greet(name) { return `Hello, ${name}!`; } const persons = ['Cristina', 'Ana']; const messages = map(persons, greet);messages; // => ['Hello, Cristina!', 'Hello, Ana!']
map(array, callback) 是一個高階函數,由於它用回調函數做爲參數,而後在其主體內部調用該回調函數:callback(item)。
注意,常規函數(用關鍵字 function 定義)或箭頭函數(用粗箭頭 => 定義)一樣能夠做爲回調使用。
2.同步回調
回調的調用方式有兩種:同步和異步回調。
同步回調是「阻塞」的:高階函數直到回調函數完成後才繼續執行。
例如,調用 map() 和 greet() 函數。
function map(array, callback) { console.log('map() starts'); const mappedArray = []; for (const item of array) { mappedArray.push(callback(item)) } console.log('map() completed'); return mappedArray; } function greet(name) { console.log('greet() called'); return `Hello, ${name}!`; } const persons = ['Cristina']; map(persons, greet); // logs 'map() starts' // logs 'greet() called' // logs 'map() completed'
其中 greet() 是同步回調。
同步回調的步驟:
- 高階函數開始執行:'map() starts'
- 回調函數執行:'greet() called'
- 最後高階函數完成它本身的執行過程:'map() completed'
同步回調的例子
許多原生 JavaScript 類型的方法都使用同步回調。
最經常使用的是 array 的方法,例如: array.map(callback), array.forEach(callback), array.find(callback), array.filter(callback), array.reduce(callback, init)
// Examples of synchronous callbacks on arrays const persons = ['Ana', 'Elena']; persons.forEach( function callback(name) { console.log(name); } ); // logs 'Ana' // logs 'Elena' const nameStartingA = persons.find( function callback(name) { return name[0].toLowerCase() === 'a'; } ); nameStartingA; // => 'Ana' const countStartingA = persons.reduce( function callback(count, name) { const startsA = name[0].toLowerCase() === 'a'; return startsA ? count + 1 : count; }, 0 ); countStartingA; // => 1
字符串類型的 string.replace(callback) 方法也能接受同步執行的回調:
// Examples of synchronous callbacks on strings const person = 'Cristina'; // Replace 'i' with '1' person.replace(/./g, function(char) { return char.toLowerCase() === 'i' ? '1' : char; } ); // => 'Cr1st1na'
3.異步回調
異步回調是「非阻塞的」:高階函數無需等待回調完成便可完成其執行。高階函數可確保稍後在特定事件上執行回調。
在如下的例子中,later() 函數的執行延遲了 2 秒:
console.log('setTimeout() starts'); setTimeout(function later() { console.log('later() called'); }, 2000); console.log('setTimeout() completed'); // logs 'setTimeout() starts' // logs 'setTimeout() completed' // logs 'later() called' (after 2 seconds)
later() 是一個異步回調,由於 setTimeout(later,2000) 啓動並完成了執行,可是 later() 在 2 秒後執行。
異步調用回調的步驟:
- 高階函數開始執行:'setTimeout()starts'
- 高階函數完成其執行: 'setTimeout() completed'
- 回調函數在 2 秒鐘後執行: 'later() called'
異步回調的例子
計時器函數異步調用回調:
setTimeout(function later() { console.log('2 seconds have passed!'); }, 2000); // After 2 seconds logs '2 seconds have passed!' setInterval(function repeat() { console.log('Every 2 seconds'); }, 2000); // Each 2 seconds logs 'Every 2 seconds!'
DOM 事件偵聽器還異步調用事件處理函數(回調函數的子類型):
const myButton = document.getElementById('myButton'); myButton.addEventListener('click', function handler() { console.log('Button clicked!'); }); // Logs 'Button clicked!' when the button is clicked
4.異步回調函數與異步函數
在函數定義以前加上特殊關鍵字 async 會建立一個異步函數:
async function fetchUserNames() { const resp = await fetch('https://api.github.com/users?per_page=5'); const users = await resp.json(); const names = users.map(({ login }) => login); console.log(names); }
fetchUserNames() 是異步的,由於它以 async 爲前綴。函數 await fetch ('https://api.github.com/users?per_page=5') 從 GitHub 上獲取前5個用戶 。而後從響應對象中提取 JSON 數據:await resp.json()。
異步函數是 promise 之上的語法糖。當遇到表達式 await <promise> (調用 fetch() 會返回一個promise)時,異步函數會暫停執行,直到 promise 被解決。
異步回調函數和異步函數是不一樣的兩個術語。
異步回調函數由高階函數以非阻塞方式執行。可是異步函數在等待 promise(await <promise>)解析時會暫停執行。
可是你能夠把異步函數用做異步回調!
讓咱們把異步函數 fetch UserNames() 設爲異步回調,只需單擊按鈕便可調用:
const button = document.getElementById('fetchUsersButton'); button.addEventListener('click', fetchUserNames);
總結
回調是一個能夠做爲參數傳給另外一個函數(高階函數)執行的函數。
回調函數有兩種:同步和異步。
同步回調是阻塞的,異步回調是非阻塞的。
最後考考你:setTimeout(callback,0) 執行 callback 時是同步仍是異步的?
本文轉自segmentfault:瘋狂的技術宅,轉載請先聯繫做者受權
原文連接: http://www.javashuo.com/article/p-mkxknsue-nz.html