javascript then方法是非同步執行,就是當【.then()】前的方法執行完後再執行【then()】內部的程序,這樣就避免了資料沒取得到等的問題,語法為【promise.then(onCompleted, onRejected)】。
本教學操作環境:windows7系統、javascript1.8.5版,DELL G3電腦。
then()方法是非同步執行。
意思是:就是當.then()
前的方法執行完後再執行then()內部的程序,這樣就避免了,資料沒取得到等的問題。
語法:
promise.then(onCompleted, onRejected);
4、參數
promise必要。 Promise 物件。
onCompleted必要。承諾成功完成時要執行的履行處理程序函數。
onRejected可選。承諾被拒絕時要執行的錯誤處理程序函數。
範例:
vstart() { super.start(); if (this.transport) { return this.transport.ready.then(() => { return this.clientSM.start(); }); } else { return Promise.reject("no transport attached"); } }
相關免費學習推薦:javascript影片教學
以上是javascript then方法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!