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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

有沒有辦法計(jì)算異步函數(shù)被調(diào)用的次數(shù)?

有沒有辦法計(jì)算異步函數(shù)被調(diào)用的次數(shù)?

慕容森 2023-08-24 18:01:27
我有從數(shù)據(jù)鏈接數(shù)組上傳文件的功能我想做的是如果數(shù)據(jù)鏈接數(shù)組包含 3 個(gè)文件const testLinks = 3;并且async uploadImageData被解雇了三次我想在被解雇了三次console.log之后。uploadImageData我正在考慮進(jìn)行計(jì)數(shù),但我所有的測(cè)試都會(huì)在每次被觸發(fā)時(shí)重新開始計(jì)數(shù)uploadImageData。.tsasync uploadImageData(formData: FormData) {  const testLinks = 3;  const uploadlink = answerAtachmentUrl;  const headers = headerLink;  const loading = await this.loadingController.create({    message: 'Uploading Photos and Files...',  });  await loading.present();  this.httpClient.post<any>( uploadlink + this.userToken, formData,   { 'headers':headers }    ).pipe(      finalize(() => { loading.dismiss();})    )    .subscribe(res => {      if (res['success']) {        setTimeout(() => { this.DeleteAllFiles(); }, 5000);        this.presentToastPhoto('Photo sync success.');      } else {        this.presentToastPhoto('Photo upload failed.');        let respFail = JSON.stringify(res);        console.log("respFail", respFail);      }    });    // console.log fires once after count and const testLinks both equal 3}
查看完整描述

1 回答

?
侃侃爾雅

TA貢獻(xiàn)1801條經(jīng)驗(yàn) 獲得超16個(gè)贊

“我正在考慮進(jìn)行計(jì)數(shù),但我所有的測(cè)試都從每次 uploadImageData 被觸發(fā)時(shí)開始計(jì)數(shù)?!?您沒有發(fā)布您嘗試過(guò)的內(nèi)容,但您可能沒有將計(jì)數(shù)器設(shè)為全局變量。您的代碼顯然是一個(gè)更大項(xiàng)目的一部分,因此我只是做了這個(gè)小測(cè)試來(lái)表明它可以與異步函數(shù)一起使用。如果不起作用,請(qǐng)告訴我。


var count=0;

async function uploadImageData() {

  const testLinks = 3;

  count++;

  console.log(count);

  if (count === 3){

    console.log('count = 3');

  }

}

uploadImageData();

uploadImageData();

uploadImageData();

uploadImageData();


查看完整回答
反對(duì) 回復(fù) 2023-08-24
  • 1 回答
  • 0 關(guān)注
  • 209 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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