美文网首页
js取消请求的另类方法

js取消请求的另类方法

作者: Coder_JdHo | 来源:发表于2022-09-21 18:46 被阅读0次
    xxxRequestId: 1,  //在data中定义请求id变量
    
    ///在请求方法中校验当前的id是否等于最新id,非最新的不处理返回的数据
    getData() {
       this.xxxRequestId++
       let currentId = this.xxxRequestId
       const res = await service.getData(param)
       if (currentId != this.xxxRequestId) {
         return
       }
       //其他业务代码
    }
    

    相关文章

      网友评论

          本文标题:js取消请求的另类方法

          本文链接:https://www.haomeiwen.com/subject/qjevortx.html