javascript – 如何中止jQuery 3.0 AJAX请求?

如何在jQuery 3.0中中止
AJAX请求?

this.r = $.ajax();

承诺没有像旧的jQuery版本那样的中止方法

if(this.r && this.r.state() == 'pending')
{
  this.r.abort(); <- error not working
}

最佳答案 在jQuery 3.0中,jQuery.Deferred是Promises / A兼容的.
The cancellation spec仍处于开发阶段,因此目前无法中止AJAX请求.

有关规范的一些背景信息,请参阅Status of cancellable promises.

点赞