第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

是否可以在繼續(xù)之前等待內(nèi)部“await”?

是否可以在繼續(xù)之前等待內(nèi)部“await”?

繁華開滿天機 2023-12-14 15:08:05
我正在編寫一個函數(shù),通過查詢數(shù)據(jù)庫獲取價格,然后將其乘以數(shù)量來計算總金額。它對數(shù)組中的每一項執(zhí)行此操作,并將總數(shù)推送到一個數(shù)組,然后將其減少為返回的最終總數(shù)。函數(shù)如下圖所示:const calculateOrderAmount = async (items: cartProduct[]): Promise<number> => {  const priceArray: number[] = [];  items.forEach(async (p: cartProduct) => {    const product = await Product.findById(p.prodId).exec();    if (product) {      const totalPrice = product.price * p.quantity;      priceArray.push(totalPrice)    } else return;   });  let amount;  if (priceArray.length === 0) amount = 0;  else amount = priceArray.reduce((a, b) => a + b);  return amount;};我遇到的問題是它的異步性。我希望它等待forEach完成,但由于它是異步的,它會繼續(xù)執(zhí)行函數(shù)的其余部分,因此最終返回 0。有沒有辦法讓它等待完成forEach?或者我應(yīng)該以不同的方式重寫它
查看完整描述

2 回答

?
蠱毒傳說

TA貢獻1895條經(jīng)驗 獲得超3個贊

您可以嘗試以下for await of構(gòu)造:

for await (variable of iterable) {
 statement
}

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of


查看完整回答
反對 回復(fù) 2023-12-14
?
慕姐8265434

TA貢獻1813條經(jīng)驗 獲得超2個贊

通過使用forEach回調(diào),您可以創(chuàng)建一系列單獨的承諾,但forEach調(diào)用本身不會等待這些承諾。


簡單的解決方案是使用循環(huán)for,它不使用回調(diào)系統(tǒng):


for (let p: cartProduct of items) {

    const product = await Product.findById(p.prodId).exec();

    if (!product) continue;

    const totalPrice = product.price * p.quantity;

    priceArray.push(totalPrice);

}


查看完整回答
反對 回復(fù) 2023-12-14
  • 2 回答
  • 0 關(guān)注
  • 163 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號