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);
}
Logo

前往低代码交流专区

更多推荐