現在是這樣,函數a是Promise非同步返回數據,其他很多函數需要用到這個數據,我現在是每個依賴這個數據的函數都要a().then()這樣處理
function a() {
return new Promise((resolve, reject) => {
....
})
}
function getsub(id) {
return a()
.then((data) => {
return .....
})
.catch((err) => {...})
}
function tree(id) {
return a()
.then((data) => {
return .....
})
.catch((err) => {...})
}
其中有一些遞歸循環依賴,複雜度增加後我感覺我要瘋了,有沒有其他好點的寫法啊?
可以用點函數式程式設計的寫法:
試試看 ES7 的 async/await ?
或 引入 async.js 函式庫,前後端通用。
如果實時性和獨立性要求都很高,那好像是沒什麼辦法...不然可以嘗試緩存a...看看其他人怎麼說