1. 程式人生 > >vue 中axios 迴圈請求會造成什麼影響,對請求的結果

vue 中axios 迴圈請求會造成什麼影響,對請求的結果

for (let i = 0; i < this.tableData.length; i++) {
//使用閉包 防止變數汙染
(function (i) {
console.log(`列印${i}`)
// 格式fileName規則 fileName.docx
let fileName = that.formate_filName(
that.tableData[i].task_name,
that.tableData[i].report_format
    );
// 進行迴圈連線判斷是否存在,以及進度問題
that.judge_url_exist(fileName, i);
  })(i);
}