码迷,mamicode.com
首页 > 其他好文 > 详细

前端发送并发请求思路

时间:2018-05-29 01:40:57      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:number   err   const   rip   发送   tip   any   dex   stat   

下面试ts简单写的思路代码

enum Statu {
  plain,
  plianing,
  error,
  ready,
}
// 并发数
class Parallel {
  num;
  files = [] as any[];
  PARALLEL_NUM = 0;
  async filesErrorTips () {
    // doto
  }
  async send (index: number) {
    if (!this.files[index]) return;

    if (this.files[index].Statu !== Statu.plianing) {
      this.send(++index);
      return;
    }

    if (this.files[index].Size > ‘500M‘) {
      await this.filesErrorTips();
      this.send(++index);
      return;
    }
    
    const res = await this.fetchApi(); 
    // 错误判断
    this.send(++index);
  }
  fetchApi () {
    // todo
  }
  init () {
    for (let i; i < this.PARALLEL_NUM; i++) {
      this.send(i);
    }
  }
}

前端发送并发请求思路

标签:number   err   const   rip   发送   tip   any   dex   stat   

原文地址:https://www.cnblogs.com/liangcheng11/p/9103007.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!