promise是什麼javascript
官網解釋 promise 表示一個異步操做的最終結果。java
翻譯 ==能夠將promise理解爲一個狀態機==,它存在三種不一樣的狀態,並在某一時刻只能有一種狀態api
一個promise是對一個異步操做的封裝,異步操做有等待完成、成功和失敗三種可能的結果,對應了promise的三種狀態。數組
promise的狀態只能有pending轉換位resolved或者pending轉換爲rejected,一旦狀態轉化完成就沒法再改變。promise
假設咱們用promise封了一個異步操做,那麼當它被建立的時候就處於pending狀態,當異步操做成功完成時, 咱們將狀態轉換爲resolved,若是執行中出現錯誤,將狀態轉換爲rejected。異步
var promise=new Promise(function(resolve,reject){
// code
if(){
/*異步操做成功 */
resolve(value)
}else{
reject(error)
}
})
複製代碼
var fs=require('fs')
function readFile_promise(path){
return new Promise(function(resolve,reject){
fs.readFile(path, 'utf-8',function(err,data){
if(data){
resolve(data)
}else{
reject(err)
}
})
})
}
var result=readFile_promise('./1.txt')
result.then(function(value){
//success
console.log('success', value)
},function(error){
//failure
console.log('failure',error)
})
// 將一個異步函數封裝成promise,只要在回調函數中針對不一樣的返回結果調用resolve或者reject方法。
// resolve函數會在異步操做成功完成時被調用,並將異步操做的返回值做爲參數傳遞到外部。
// reject是在異步操做出現異常時被調用,會將錯誤信息做爲參數傳遞出去。
複製代碼
then方法老是返回一個新的promise對象,屢次調用then方法,默認返回一個一個空的promise對象 使用return來來返回。async
var promise=readFile_promise('./foo.txt')
promise.then(function(value){
//success
console.log('success', value) // foo
return readFile_promise('./bar.txt')
},function(error){
//failure
console.log('failure',error)
}).then(function(value){
console.log('then', value) // bar
})
複製代碼
var promise=new Promise((resolve, reject)=>{
console.log('begin')
resolve()
})
setTimeout(()=>{
promise.then(()=>{
console.log('end')
})
},5000)
// 開始begin 5s後end
// 運行順序是,當promise從被建立的那一刻起就開始執行了,then方法只是提供了訪問promise狀態的接口,與promise的執行無關。
複製代碼
// 若是有多個promise須要執行,可使用promise.all()
// 方法統一聲明,改方法能夠將多個promise對象包裝成一個promise
// 該方法接收一個數組做爲參數,數據的元素若是不是promise對象,則回先調用resolve方法轉換。
// 若是中間有一個promise狀態是reject,那麼轉換後的promise也會變成reject,而且將錯誤信息傳給catch方法
var promises=['foo.txt','bar.txt','baz.txt']
promises.map(function(path){
// console.log(path)
return readFile_promise(path)
})
Promise.all(promises).then(function(results){
console.log(results) // [ 'foo.txt', 'bar.txt', 'baz.txt' ] 順序排列的
}).catch(function(err){
//
})
複製代碼
// 例子; 有三個文本文件須要順序讀取
var lists=['foo.txt','bar.txt','baz.txt']
var count=0;
readFile_promise('foo.txt').then(readCB).then(readCB).then(readCB);
function readCB(data){
console.log(data) // foo bar baz
if(++count>2){
return
}
return readFile_promise(lists[count])
}
複製代碼
await關鍵字後面每每是一個promise,若是不是就隱式調用promise.resolve來轉換成一個promise。 await 等待後面的promise執行完成再進行下一步操做。函數
var asyncReadFile=async function(){
var result1=await readFile_promise('./foo.txt')
console.log(result1.toString()) // foo
}
asyncReadFile()
複製代碼
async函數老是會返回一個promise對象,若是return關鍵字後面不是一個promise,那麼默認 調用promise。resolve方法進行轉換。ui
async function asyncFunc(){
return 'hello Node'
}
asyncFunc().then(function(data){
console.log(data) // hello Node
})
複製代碼
async function asyncFunc(){
console.log('begin')
return 'hello Node'
}
asyncFunc().then(function(data){
console.log(data) // hello Node
console.log('end')
})
// begin
// hello
// end
複製代碼
await 操做符的結果是由其後面promise對象的操做結果來決定的,若是後面promise對象變爲resolved, await操做符發返回的值就是resolve的值;若是promise對象的狀態變成rejected,那麼await也會拋出reject的值。spa
async function readFile(){
var result=await readFile_promise('./foo.txt')
console.log(result) // foo
}
readFile()
// 等價於
readFile_promise('foo.txt').then(function(data){
console.log(data) // foo
})
複製代碼
await會等待後面的promise完成後再採起下一步動做,這意味着當多個await操做時,程序會便成徹底的 串行操做。
當異步操做之間不存在依賴關係時,可使用promise.all來實現並行。
async function readFile(){
const [result1, result2]=await Promise.all([
readFile_promise('./foo.txt'),
readFile_promise('./bar.txt')
])
console.log(result1, result2) // foo bar
}
readFile()
// 等價於
function readFile(){
return Promise.all([
readFile_promise('./foo.txt'),
readFile_promise('./baz.txt')
]).then((result)=>{
console.log(result) // [ 'foo', 'baz' ]
})
}
readFile()
複製代碼
await關鍵字使用的一些關鍵點